home *** CD-ROM | disk | FTP | other *** search
- #ifndef SERLIB_BASE_H
- #define SERLIB_BASE_H
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #ifndef EXEC_LIST_H
- #include <exec/lists.h>
- #endif
-
- #ifndef EXEC_LIBRARIES_H
- #include <exec/libraries.h>
- #endif
-
- struct SerLibBase {
- struct Library LibNode;
- UBYTE Flags;
- UBYTE pad;
- ULONG SysLib;
- ULONG DosLib;
- ULONG SegList;
- char Cnt;
- UWORD unused;
- UWORD unused2;
- };
-
- #define SERLIBNAME "serlib.library"
- #endif
-