home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d5xx / d523 / serlib.lha / SerLib / Examples / Aztec_3.6 / serlibbase.h < prev    next >
C/C++ Source or Header  |  1991-08-05  |  417b  |  30 lines

  1. #ifndef SERLIB_BASE_H
  2. #define SERLIB_BASE_H
  3.  
  4. #ifndef EXEC_TYPES_H
  5. #include <exec/types.h>
  6. #endif
  7.  
  8. #ifndef EXEC_LIST_H
  9. #include <exec/lists.h>
  10. #endif
  11.  
  12. #ifndef EXEC_LIBRARIES_H
  13. #include <exec/libraries.h>
  14. #endif
  15.  
  16. struct SerLibBase {
  17.     struct Library LibNode;
  18.     UBYTE    Flags;
  19.     UBYTE    pad;
  20.     ULONG    SysLib;
  21.     ULONG    DosLib;
  22.     ULONG    SegList;
  23.     char    Cnt;
  24.     UWORD    unused;
  25.     UWORD    unused2;
  26. };
  27.  
  28. #define    SERLIBNAME    "serlib.library"
  29. #endif
  30.