home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / e / extralib / !ExtrasLib / h / OSHeap < prev    next >
Text File  |  1996-03-03  |  416b  |  13 lines

  1. /* ExtrasLib:OSHeap.h */
  2.  
  3. /* ExtrasLib by Peter Hartley 1995-96
  4.  * (K) All Rites Reversed - Copy What You Like
  5.  */
  6.  
  7. os_error *OSHeap_Initialise( void *heap, int size );
  8. os_error *OSHeap_Describe( void *heap, int *maxblock, int *totalfree );
  9. os_error *OSHeap_Claim( void *heap, int sizerq, void **block );
  10. os_error *OSHeap_Free( void *heap, void **block );
  11.  
  12. os_error *OS_ReadMemMapInfo( int *pagesize, int *npages );
  13.