home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / opus / v5 / opussdk / amigaguide / dopus / memory.h < prev    next >
C/C++ Source or Header  |  1977-12-31  |  832b  |  31 lines

  1. @DATABASE "dopus/memory.h"
  2. @MASTER   "opussdk:include/dopus/memory.h"
  3. @REMARK   (c) Dr Greg Perry and Jonathan Potter, GPSoftware 1996
  4. @REMARK   This file was initially created by ADtoHT 2.1 on 07-Sep-96 18:20:14
  5. @REMARK   ADtoHT is © 1993-1995 Christian Stieber
  6.  
  7. @NODE MAIN "dopus/memory.h"
  8. @TOC "DopusSDK/MAIN"
  9.  
  10. @{"dopus/memory.h" LINK File}
  11.  
  12. @ENDNODE
  13. @NODE File "dopus/memory.h"
  14. #ifndef _DOPUS_MEMORY
  15. #define _DOPUS_MEMORY
  16.  
  17. /*****************************************************************************
  18.  
  19.  Memory functions
  20.  
  21.  *****************************************************************************/
  22.  
  23. void *AllocMemH(void *handle,ULONG size);
  24. void ClearMemHandle(void *handle);
  25. void FreeMemH(void *memory);
  26. void FreeMemHandle(void *handle);
  27. void *NewMemHandle(ULONG puddle_size,ULONG thresh_size,ULONG type);
  28.  
  29. #endif
  30. @ENDNODE
  31.