home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Utilities / amiCheck / Source / libraries.h < prev    next >
C/C++ Source or Header  |  1995-09-16  |  732b  |  35 lines

  1. #ifndef LIBRARIES_H
  2. #define LIBRARIES_H
  3.  
  4. /************************************************************************
  5. *   libraries.h:
  6. *   global externs for the library routines
  7. *   
  8. *************************************************************************/
  9.  
  10. #include <libraries/easyrexx.h>
  11.  
  12. #if 0
  13. extern struct Library *DiskfontBase;
  14. extern struct Library *GfxBase;
  15. extern struct Library *IntuitionBase;
  16. extern struct Library *UtilityBase;
  17. /*
  18. extern struct Library *ConsoleDevice;
  19. extern struct Library *KeymapBase;
  20. extern struct Library *IconBase;
  21. */
  22. extern struct Library *DosBase;
  23. extern struct Library *AslBase;
  24. #endif
  25.  
  26. extern struct Library *EasyRexxBase;
  27.  
  28. /*
  29.  * prototypes
  30.  */
  31.  
  32. BOOL LibOpen(long);
  33. void LibClose(void);
  34. #endif
  35.