home *** CD-ROM | disk | FTP | other *** search
- #include <exec/lists.h>
- #include <exec/memory.h>
- #include <exec/execbase.h>
- #include <clib/alib_protos.h>
- #ifdef __GNUC__
- #include <inline/exec.h>
- #else
- #include <clib/exec_protos.h>
- #endif
-
- /* our PRIVATE! memory pool structure
- (_NOT_ compatible with original amiga.lib!) */
-
- typedef struct Pool
- {
- struct MinList PuddleList;
- struct MinList ThreshList;
- ULONG MemoryFlags;
- ULONG PuddleSize;
- ULONG ThreshSize;
- } POOL;
-
- /* for version checking */
-
- extern struct ExecBase *SysBase;
-