Ignore:
Timestamp:
Feb 13, 2003, 6:17:06 PM (23 years ago)
Author:
sandervl
Message:

cleaned up

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/ntdll.h

    r9684 r9803  
    1 /* $Id: ntdll.h,v 1.14 2003-01-16 15:22:38 sandervl Exp $ */
     1/* $Id: ntdll.h,v 1.15 2003-02-13 17:17:06 sandervl Exp $ */
    22
    33/*
     
    4646
    4747//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)
    5150
    5251typedef struct _IO_STATUS_BLOCK
Note: See TracChangeset for help on using the changeset viewer.