Changeset 9803 for trunk/src/NTDLL/ntdll.h
- Timestamp:
- Feb 13, 2003, 6:17:06 PM (23 years ago)
- File:
-
- 1 edited
-
trunk/src/NTDLL/ntdll.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/ntdll.h
r9684 r9803 1 /* $Id: ntdll.h,v 1.1 4 2003-01-16 15:22:38sandervl Exp $ */1 /* $Id: ntdll.h,v 1.15 2003-02-13 17:17:06 sandervl Exp $ */ 2 2 3 3 /* … … 46 46 47 47 //SvL: Internal heap allocation definitions for NTDLL 48 extern HANDLE NTDLL_hHeap; 49 #define Heap_Alloc(a) HeapAlloc(NTDLL_hHeap, HEAP_ZERO_MEMORY, a) 50 #define Heap_Free(a) HeapFree(NTDLL_hHeap, 0, (PVOID)a) 48 #define Heap_Alloc(a) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, a) 49 #define Heap_Free(a) HeapFree(GetProcessHeap(), 0, (PVOID)a) 51 50 52 51 typedef struct _IO_STATUS_BLOCK
Note:
See TracChangeset
for help on using the changeset viewer.
