- Timestamp:
- Aug 18, 1999, 8:43:54 PM (26 years ago)
- Location:
- trunk/src/NTDLL
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/ntdll.def
r430 r552 1 ; $Id: ntdll.def,v 1. 9 1999-08-05 23:28:33phaller Exp $1 ; $Id: ntdll.def,v 1.10 1999-08-18 18:43:54 phaller Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 248 248 RtlIsTextUnicode = _RtlIsTextUnicode@12 @417 249 249 RtlCompareUnicodeString = _RtlCompareUnicodeString@12 250 RtlUpcaseUnicodeStringToOemString = _RtlUpcaseUnicodeStringToOemString@12 251 250 252 251 253 RtlInitializeResource = _RtlInitializeResource@4 @409 -
trunk/src/NTDLL/ntdll.h
r97 r552 1 /* $Id: ntdll.h,v 1. 3 1999-06-10 17:06:45phaller Exp $ */1 /* $Id: ntdll.h,v 1.4 1999-08-18 18:43:54 phaller Exp $ */ 2 2 3 3 /* … … 494 494 DWORD WINAPI RtlIsTextUnicode(LPVOID buf, DWORD len, DWORD *pf); 495 495 DWORD WINAPI RtlCompareUnicodeString(PUNICODE_STRING String1, PUNICODE_STRING String2, BOOLEAN CaseInSensitive); 496 DWORD WINAPI RtlUpcaseUnicodeStringToOemString(PANSI_STRING oem, PUNICODE_STRING uni, BOOLEAN alloc); 496 497 497 498 /* -
trunk/src/NTDLL/rtlstr.cpp
r97 r552 1 /* $Id: rtlstr.cpp,v 1. 4 1999-06-10 17:06:46phaller Exp $ */1 /* $Id: rtlstr.cpp,v 1.5 1999-08-18 18:43:54 phaller Exp $ */ 2 2 3 3 /* … … 22 22 #include "windef.h" 23 23 24 #define HAVE_WCTYPE_H 24 25 #ifdef HAVE_WCTYPE_H 25 26 # include <wctype.h> … … 582 583 583 584 585 586 /************************************************************************** 587 * RtlUpcaseUnicodeStringToOemString [NTDLL.?] 588 * @@@PH: parameters are pure speculation! 589 */ 590 DWORD WINAPI RtlUpcaseUnicodeStringToOemString(PANSI_STRING oem, 591 PUNICODE_STRING uni, 592 BOOLEAN alloc) 593 { 594 DWORD rc; 595 596 dprintf(("NTDLL: RtlUpcaseUnicodeStringToOemString(%08xh,%08xh,%08xh)\n", 597 oem, 598 uni, 599 alloc)); 600 601 rc = RtlUnicodeStringToOemString(oem, 602 uni, 603 alloc); 604 if (rc == 0) 605 strupr(oem->Buffer); 606 607 return rc; 608 } 609 610
Note:
See TracChangeset
for help on using the changeset viewer.