home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / ImageLib / Image_lib / include / libraries / imagebase.h < prev   
Encoding:
C/C++ Source or Header  |  1998-10-25  |  386 b   |  18 lines

  1. #ifndef LIBRARIES_IMAGEBASE_H
  2. #define LIBRARIES_IMAGEBASE_H
  3.  
  4. #ifndef  EXEC_LIBRARIES
  5. #include <exec/libraries.h>
  6. #endif /* EXEC_LIBRARIES_H */
  7.  
  8. struct ImageBase
  9. {
  10.  struct Library         ib_LibNode;
  11.  APTR                   ib_SegList;
  12.  struct ExecBase       *ib_SysBase;
  13.  struct Library        *ib_UtilityBase;
  14.  struct GfxBase        *ib_GfxBase;
  15. };
  16.  
  17. #endif /* LIBRARIES_IMAGEBASE_H */
  18.