Changeset 7983 for trunk/src/NTDLL/rtlstr.c
- Timestamp:
- Feb 21, 2002, 11:52:43 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/rtlstr.c
r7254 r7983 606 606 * including the terminating NULL. 607 607 */ 608 UINT WINAPI RtlOemStringToUnicodeSize( PSTRING str)608 UINT WINAPI RtlOemStringToUnicodeSize( const STRING *str ) 609 609 { 610 610 DWORD ret = MultiByteToWideChar( CP_OEMCP, 0, str->Buffer, str->Length, NULL, 0 ); … … 619 619 * including the terminating NULL. 620 620 */ 621 DWORD WINAPI RtlAnsiStringToUnicodeSize( PSTRING str)621 DWORD WINAPI RtlAnsiStringToUnicodeSize( const STRING *str ) 622 622 { 623 623 DWORD ret = MultiByteToWideChar( CP_ACP, 0, str->Buffer, str->Length, NULL, 0 );
Note:
See TracChangeset
for help on using the changeset viewer.