home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 33
/
Aminet 33 - October 1999.iso
/
Aminet
/
dev
/
c
/
PMM.lha
/
PMM
/
Developer
/
autostarts_src
/
IntuiSupBase.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
|
1999-06-30
|
306 b
|
19 lines
#include <stdio.h>
#include <exec/libraries.h>
#include <proto/exec.h>
struct Library *IntuiSupBase = NULL;
void _INIT_5_IntuiSupBase()
{
if (!(IntuiSupBase = OpenLibrary("Intuisup.library",0))) {
exit(20);
}
}
void _EXIT_5_IntuiSupBase()
{
if (IntuiSupBase)
CloseLibrary(IntuiSupBase);
}