home *** CD-ROM | disk | FTP | other *** search
/ CD-X 1 / cdx_01.iso / demodisc / basq / dualmodp / gushm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-07  |  691 b   |  34 lines

  1. // ************************************************************************
  2. // *
  3. // *    File        : GUSHM.H
  4. // *
  5. // *    Description : Header file for GUS Heap Manager
  6. // *
  7. // *    Copyright (C) 1993 Otto Chrons
  8. // *
  9. // ************************************************************************
  10.  
  11. #ifndef __GUSHM_H
  12. #define __GUSHM_H
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. #define GUS_MEMORY -1
  19.  
  20. typedef long GUSH;
  21.  
  22. int     cdecl gushmInit( void );
  23. void cdecl gushmClose( void );
  24. void cdecl gushmFreeAll( void );
  25. GUSH cdecl gushmAlloc( long size );
  26. void cdecl gushmFree( GUSH handle );
  27. void cdecl gushmShowHeap( void );
  28.  
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32.  
  33. #endif
  34.