Ignore:
Timestamp:
Dec 21, 1999, 2:46:25 PM (26 years ago)
Author:
sandervl
Message:

calloc bugfix + private heap for crtldll added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/crtdll/crtinc.h

    r2177 r2182  
    1 /* $Id: crtinc.h,v 1.12 1999-12-21 12:27:12 sandervl Exp $ */
     1/* $Id: crtinc.h,v 1.13 1999-12-21 13:46:25 sandervl Exp $ */
    22
    33/* Definitions for the CRTDLL library (CRTDLL.DLL)
     
    1010#define MAX_PATHNAME_LEN 260
    1111#endif
     12
     13//SvL: Internal heap allocation definitions for NTDLL
     14extern HANDLE CRTDLL_hHeap;
     15#define Heap_Alloc(a)   HeapAlloc(CRTDLL_hHeap, HEAP_ZERO_MEMORY, a)
     16#define Heap_Free(a)    HeapFree(CRTDLL_hHeap, 0, (PVOID)a)
    1217
    1318// MBC Defs
Note: See TracChangeset for help on using the changeset viewer.