Changeset 5011 for trunk/src/kernel32/heap.cpp
- Timestamp:
- Jan 22, 2001, 7:26:52 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/heap.cpp
r4566 r5011 1 /* $Id: heap.cpp,v 1.2 3 2000-11-06 20:01:26sandervl Exp $ */1 /* $Id: heap.cpp,v 1.24 2001-01-22 18:26:50 sandervl Exp $ */ 2 2 3 3 /* … … 47 47 OS2Heap *curheap = OS2Heap::find(hHeap); 48 48 49 dprintf2(("HeapReAlloc % X bytes", dwBytes));49 dprintf2(("HeapReAlloc %x %x %x %X bytes", hHeap, dwFlags, lpMem, dwBytes)); 50 50 if(curheap == NULL) 51 51 return(NULL); … … 388 388 HGLOBAL WIN32API GlobalReAlloc(HGLOBAL arg1, DWORD arg2, UINT arg3) 389 389 { 390 dprintf(("KERNEL32: GlobalReAlloc\n"));390 dprintf(("KERNEL32: GlobalReAlloc %x %x %d", arg1, arg2, arg3)); 391 391 392 392 return O32_GlobalReAlloc(arg1, arg2, arg3);
Note:
See TracChangeset
for help on using the changeset viewer.