mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
msvcrt: Don't forward _wcsnicmp to ntdll.
This commit is contained in:
parent
53036b6917
commit
2734ae0786
@ -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
|
||||
|
@ -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.@)
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user