- Timestamp:
- Aug 19, 1999, 4:12:17 AM (26 years ago)
- Location:
- trunk/src/NTDLL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/ntdll.def
r563 r568 1 ; $Id: ntdll.def,v 1.1 5 1999-08-18 23:41:15phaller Exp $1 ; $Id: ntdll.def,v 1.16 1999-08-19 02:12:17 phaller Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 283 283 RtlReleaseResource = _RtlReleaseResource@4 @471 284 284 RtlDumpResource = _RtlDumpResource@4 @340 285 RtlCreateHeap = _RtlCreateHeap@24 286 RtlAllocateHeap = _RtlAllocateHeap@12 287 RtlFreeHeap = _RtlFreeHeap@12 288 RtlDestroyHeap = _RtlDestroyHeap@4 285 RtlCreateHeap = _RtlCreateHeap@24 @309 286 RtlAllocateHeap = _RtlAllocateHeap@12 @266 287 RtlFreeHeap = _RtlFreeHeap@12 @374 288 RtlDestroyHeap = _RtlDestroyHeap@4 @333 289 RtlSizeHeap = _RtlSizeHeap@12 @493 289 290 ; DbgPrint = _DbgPrint@8 290 291 -
trunk/src/NTDLL/rtl.cpp
r560 r568 1 /* $Id: rtl.cpp,v 1. 5 1999-08-18 22:08:34phaller Exp $ */1 /* $Id: rtl.cpp,v 1.6 1999-08-19 02:12:17 phaller Exp $ */ 2 2 3 3 /* … … 18 18 #include <stdlib.h> 19 19 #include <string.h> 20 #include <odinwrap.h> 20 21 21 22 #include "ntdll.h" … … 26 27 27 28 29 ODINDEBUGCHANNEL(NTDLL-RTL) 28 30 29 31 /* … … 326 328 327 329 330 331 /****************************************************************************** 332 * RtlSizeHeap [NTDLL] 333 */ 334 335 ODINFUNCTION3(DWORD,RtlSizeHeap,HANDLE,hHeap, 336 DWORD, dwFlags, 337 PVOID, pAddress) 338 { 339 return HeapSize(hHeap, 340 dwFlags, 341 pAddress); 342 } 343 344 345 328 346 /* 329 347 * misc functions
Note:
See TracChangeset
for help on using the changeset viewer.