msvcrt: Don't forward _wcsnicmp to ntdll.

This commit is contained in:
Piotr Caban 2013-09-12 12:50:19 +02:00 committed by Alexandre Julliard
parent 53036b6917
commit 2734ae0786
2 changed files with 9 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@
# stub _wcslwr_s_l(wstr long ptr)
@ cdecl _wcsncoll(wstr wstr long) MSVCRT__wcsncoll
@ cdecl _wcsncoll_l(wstr wstr long ptr) MSVCRT__wcsncoll_l
@ cdecl _wcsnicmp(wstr wstr long) ntdll._wcsnicmp
@ cdecl _wcsnicmp(wstr wstr long) MSVCRT__wcsnicmp
# stub _wcsnicmp_l(wstr wstr long ptr)
@ cdecl _wcsnicoll(wstr wstr long) MSVCRT__wcsnicoll
@ cdecl _wcsnicoll_l(wstr wstr long ptr) MSVCRT__wcsnicoll_l

View File

@ -85,6 +85,14 @@ INT CDECL MSVCRT__wcsicmp( const MSVCRT_wchar_t* str1, const MSVCRT_wchar_t* str
return strcmpiW( str1, str2 );
}
/*********************************************************************
* _wcsnicmp (MSVCRT.@)
*/
INT CDECL MSVCRT__wcsnicmp(const MSVCRT_wchar_t *str1, const MSVCRT_wchar_t *str2, INT n)
{
return strncmpiW(str1, str2, n);
}
/*********************************************************************
* _wcsicoll_l (MSVCRT.@)
*/