home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gppdem32.zip / gppDemid32 / tools.h < prev   
Text File  |  1996-08-05  |  260b  |  12 lines

  1. #if !defined (__TOOLS_H__)
  2. #define __TOOLS_H__ 1
  3.  
  4. #define HEAPSIZE  64*1024
  5.  
  6. unsigned long SysCreateHeap(unsigned long size);
  7. unsigned long SysDestroyHeap( void );
  8. void*         SysAlloc(unsigned long size);
  9. unsigned long SysFree(void* p);
  10.  
  11. #endif
  12.