home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Libraries
/
TransSkel
/
Convenience
/
Dialog Item Stuff
/
SkelSetDlogProc.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-20
|
277 b
|
19 lines
|
[
TEXT/KAHL
]
/*
* Set procedure associated with dialog user item.
*/
# include "TransSkel.h"
pascal void
SkelSetDlogProc (DialogPtr d, short item, SkelDlogItemProcPtr p)
{
short type;
Handle h;
Rect r;
GetDItem (d, item, &type, &h, &r);
SetDItem (d, item, type, (Handle) p, &r);
}