Changeset 568 for trunk/src/NTDLL/rtl.cpp
- Timestamp:
- Aug 19, 1999, 4:12:17 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.