home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 15
/
AACD15.ISO
/
AACD
/
System
/
MorphOS
/
Developer
/
emulexamples
/
library
/
skeleton
/
test.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
|
2000-11-02
|
227 b
|
14 lines
#include <exec/libraries.h>
#include <proto/exec.h>
int main(void)
{
struct Library *MyLibrary;
if (MyLibrary=OpenLibrary("ppcexample.elf",
0))
{
CloseLibrary(MyLibrary);
}
return(0);
}