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