home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / os2sdk / os2sdk12 / ted / tedmem.h < prev   
Encoding:
C/C++ Source or Header  |  1989-11-20  |  712 b   |  28 lines

  1. /****************************************************************************
  2.  
  3.     Tedmem.h
  4.  
  5.     Created by Microsoft Corporation, IBM Corporation 1989
  6.  
  7. ------------------------------------------------------------------------------
  8.  
  9.     Function Prototypes for tedmem.c functions.  This file is designed to
  10.     be a virtual memory allocate / Free mechanism which is independent
  11.     of the Selector based memory allocation currently in use
  12.  
  13. *****************************************************************************/
  14.  
  15.  
  16.  
  17. /* Typedef's */
  18.  
  19. typedef ULONG APIRET;
  20.  
  21.  
  22.  
  23.  
  24. /* Function prototypes */
  25.  
  26. APIRET APIENTRY MyAllocMem( PVOID * , ULONG , ULONG ) ;
  27. APIRET APIENTRY MyFreeMem ( PVOID );
  28.