home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / c / CLib37x.lha / c_lib / source / include / example / examplebase.h < prev   
Encoding:
C/C++ Source or Header  |  1996-12-11  |  654 b   |  33 lines

  1. /*
  2. **      $VER: examplebase.h 37.1 (4.12.96)
  3. **
  4. **      definition of ExampleBase
  5. **
  6. **      (C) Copyright 1996 Andreas R. Kleinert
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef EXAMPLE_EXAMPLEBASE_H
  11. #define EXAMPLE_EXAMPLEBASE_H
  12.  
  13. #ifdef   __MAXON__
  14. #ifndef  EXEC_LIBRARIES_H
  15. #include <exec/libraries.h>
  16. #endif
  17. #else
  18. #ifndef  EXEC_LIBRARIES
  19. #include <exec/libraries.h>
  20. #endif /* EXEC_LIBRARIES_H */
  21. #endif
  22.  
  23. struct ExampleBase
  24. {
  25.  struct Library         exb_LibNode;
  26.  APTR                   exb_SegList;
  27.  struct ExecBase       *exb_SysBase;
  28.  struct IntuitionBase  *exb_IntuitionBase;
  29.  struct GfxBase        *exb_GfxBase;
  30. };
  31.  
  32. #endif /* EXAMPLE_EXAMPLEBASE_H */
  33.