Changeset 7983 for trunk/src/NTDLL/rtl.cpp
- Timestamp:
- Feb 21, 2002, 11:52:43 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/rtl.cpp
r6372 r7983 1 /* $Id: rtl.cpp,v 1.1 3 2001-07-20 15:39:47sandervl Exp $ */1 /* $Id: rtl.cpp,v 1.14 2002-02-21 22:52:42 sandervl Exp $ */ 2 2 3 3 /* … … 29 29 #include "stackframe.h" 30 30 #include "ntddk.h" 31 #include "imagehlp.h"32 31 #include "winreg.h" 33 32 #include "heapstring.h" … … 334 333 * FIXME: prototype guessed 335 334 */ 336 BOOLEAN WINAPI RtlDestroyHeap(HANDLE Heap)335 HANDLE WINAPI RtlDestroyHeap( HANDLE Heap ) 337 336 { 338 337 dprintf(("NTDLL: RtlDestroyHeap(%08xh)\n", … … 505 504 506 505 507 /******************************************************************************508 * RtlEnlargedIntegerMultiply [NTDLL.341]509 * Note: This even works, since gcc returns 64bit values in eax/edx just like510 * the caller expects. However... The relay code won't grok this I think.511 *512 * @@@PH: Parameters are unknown513 */514 /* longlong in VAC++ ? */515 516 extern INT WINAPI RtlEnlargedIntegerMultiply(INT factor1,517 INT factor2);518 519 506 520 507 /****************************************************************************** 521 508 * RtlFormatCurrentUserKeyPath [NTDLL.371] 522 509 */ 523 DWORD WINAPI RtlFormatCurrentUserKeyPath(PUNICODE_STRING pustrKeyPath)510 NTSTATUS WINAPI RtlFormatCurrentUserKeyPath(IN OUT PUNICODE_STRING pustrKeyPath) 524 511 { 525 512 dprintf(("NTDLL: RtlFormatCurrentUserKeyPath(%08xh) not correctly implemented.\n",
Note:
See TracChangeset
for help on using the changeset viewer.