home *** CD-ROM | disk | FTP | other *** search
- #include <exec/lists.h>
- #include <exec/memory.h>
- #include <exec/execbase.h>
- #include <proto/exec.h>
-
- /*
- ** our PRIVATE! memory pool structure
- ** (_NOT_ compatible with original amiga.lib!)
- */
-
- typedef struct Pool
- {
- struct MinList PuddleList;
- ULONG MemoryFlags;
- ULONG PuddleSize;
- ULONG ThreshSize;
- } POOL;
-
- extern struct ExecBase *SysBase;
-