home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d269
/
propgadget.lha
/
PropGadget
/
clean2.inc
< prev
next >
Wrap
Text File
|
1989-11-06
|
296b
|
15 lines
extern struct IntuitionBase *IntuitionBase;
extern struct GfxBase *GfxBase;
void CleanUp(message)
FAST TEXT *message;
{
puts(message);
if (GfxBase !=NULL) CloseLibrary((struct Library *)GfxBase);
if (IntuitionBase!=NULL) CloseLibrary((struct Library *)IntuitionBase);
exit(TRUE);
}