Changeset 552 for trunk/src/NTDLL/rtlstr.cpp
- Timestamp:
- Aug 18, 1999, 8:43:54 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.