home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / AmigaLib / pool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  351 b   |  20 lines

  1. #include <exec/lists.h>
  2. #include <exec/memory.h>
  3. #include <exec/execbase.h>
  4. #include <proto/exec.h>
  5.  
  6. /*
  7. **     our PRIVATE! memory pool structure
  8. ** (_NOT_ compatible with original amiga.lib!)
  9. */
  10.  
  11. typedef struct Pool
  12. {
  13.   struct MinList PuddleList;
  14.   ULONG MemoryFlags;
  15.   ULONG PuddleSize;
  16.   ULONG ThreshSize;
  17. } POOL;
  18.  
  19. extern struct ExecBase *SysBase;
  20.