home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / System / MorphOS / Developer / emulexamples / library / skeleton / test.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-02  |  227 b   |  14 lines

  1. #include <exec/libraries.h>
  2. #include <proto/exec.h>
  3.  
  4. int    main(void)
  5. {
  6. struct Library    *MyLibrary;
  7.   if (MyLibrary=OpenLibrary("ppcexample.elf",
  8.                             0))
  9.   {
  10.     CloseLibrary(MyLibrary);
  11.   }
  12.   return(0);
  13. }
  14.