Ignore:
Timestamp:
Feb 21, 2002, 11:52:43 PM (24 years ago)
Author:
sandervl
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/rtlstr.c

    r7254 r7983  
    606606 * including the terminating NULL.
    607607 */
    608 UINT WINAPI RtlOemStringToUnicodeSize(PSTRING str)
     608UINT WINAPI RtlOemStringToUnicodeSize( const STRING *str )
    609609{
    610610    DWORD ret = MultiByteToWideChar( CP_OEMCP, 0, str->Buffer, str->Length, NULL, 0 );
     
    619619 * including the terminating NULL.
    620620 */
    621 DWORD WINAPI RtlAnsiStringToUnicodeSize(PSTRING str)
     621DWORD WINAPI RtlAnsiStringToUnicodeSize( const STRING *str )
    622622{
    623623    DWORD ret = MultiByteToWideChar( CP_ACP, 0, str->Buffer, str->Length, NULL, 0 );
Note: See TracChangeset for help on using the changeset viewer.