msvcrt: Don't forward wcsstr to ntdll.

This commit is contained in:
Piotr Caban 2013-09-17 14:46:42 +02:00 committed by Alexandre Julliard
parent a89f726355
commit 882761f15d
2 changed files with 9 additions and 1 deletions

View File

@ -1501,7 +1501,7 @@
@ cdecl wcsrtombs(ptr ptr long ptr) MSVCRT_wcsrtombs
@ cdecl wcsrtombs_s(ptr ptr long ptr long ptr) MSVCRT_wcsrtombs_s
@ cdecl wcsspn(wstr wstr) ntdll.wcsspn
@ cdecl wcsstr(wstr wstr) ntdll.wcsstr
@ cdecl wcsstr(wstr wstr) MSVCRT_wcsstr
@ cdecl wcstod(wstr ptr) MSVCRT_wcstod
@ cdecl wcstok(wstr wstr) MSVCRT_wcstok
@ cdecl wcstok_s(ptr wstr ptr)

View File

@ -1856,3 +1856,11 @@ int CDECL MSVCRT_wcslen(const MSVCRT_wchar_t *str)
{
return strlenW(str);
}
/*********************************************************************
* wcsstr (MSVCRT.@)
*/
MSVCRT_wchar_t* CDECL MSVCRT_wcsstr(const MSVCRT_wchar_t *str, const MSVCRT_wchar_t *sub)
{
return strstrW(str, sub);
}