home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / wpj_mag / wpjv1n8.zip / SHAREMEM.ZIP / MALLOC / MALLOC.DEF < prev    next >
Text File  |  1993-06-10  |  426b  |  22 lines

  1. ; Windows Global Memory Allocation Library
  2. ; (C) Dennis CHUAH, 1992,1993
  3. ;
  4. ; 10-6-93
  5. ;
  6.  
  7. LIBRARY        MALLOC
  8. DESCRIPTION    'Windows Global Memory Allocation Library (C) Dennis Chuah 1992'
  9. CODE        PRELOAD MOVEABLE DISCARDABLE
  10. DATA        PRELOAD MOVEABLE SINGLE
  11. HEAPSIZE    1024
  12. STUB        'D:\WIN\LIBRARY\STUB\STUB.EXE'
  13.  
  14. EXPORTS
  15.   TestProc        @200
  16.   WEP            @500 RESIDENTNAME
  17.  
  18.   gmalloc        @1
  19.   grealloc        @2
  20.   gfree            @3
  21.   gisptr        @4
  22.