home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / edu / DITOdev.lha / DITOdev / Extensions / Source / Italiano / Base.h next >
C/C++ Source or Header  |  1996-12-17  |  638b  |  31 lines

  1. /*
  2. **      $VER: DITOEXTbase.h 2.0 (14.8.96)
  3. **
  4. **      definition of DITOEXTBase
  5. **
  6. **      (C) Copyright 1996 Andreas R. Kleinert
  7. **      All Rights Reserved.
  8. */
  9.  
  10. /// HEADER
  11. #ifndef DITOEXT_DITOEXTBASE_H
  12. #define DITOEXT_DITOEXTBASE_H
  13.  
  14. #ifndef EXEC_LIBRARIES
  15. #include <exec/libraries.h>
  16. #endif /* EXEC_LIBRARIES_H */
  17. ///
  18. /// struct DITO_ExtBase
  19. struct DitoExtBase
  20. {
  21.  struct Library         exb_LibNode;
  22.  APTR                   exb_SegList;
  23.  struct ExecBase       *exb_SysBase;
  24.  struct DosLibrary     *exb_DOSBase;
  25.  struct IntuitionBase  *exb_IntuitionBase;
  26.  struct GfxBase        *exb_GfxBase;
  27. };
  28.  
  29. #endif /* DITOEXT_DITOEXTBASE_H */
  30. ///
  31.