StrSpnW doesn't exist in comctl32.dll but StrCSpnW does.
This commit is contained in:
parent
2f339b2523
commit
36eb79144a
|
@ -75,7 +75,7 @@
|
||||||
361 stdcall -noname StrCmpNIW(wstr wstr long)
|
361 stdcall -noname StrCmpNIW(wstr wstr long)
|
||||||
362 stdcall -noname StrStrW(wstr wstr)
|
362 stdcall -noname StrStrW(wstr wstr)
|
||||||
363 stdcall -noname StrStrIW(wstr wstr)
|
363 stdcall -noname StrStrIW(wstr wstr)
|
||||||
364 stdcall -noname StrSpnW(wstr wstr)
|
364 stdcall -noname StrCSpnW(wstr wstr)
|
||||||
365 stdcall -noname StrToIntW(wstr)
|
365 stdcall -noname StrToIntW(wstr)
|
||||||
366 stdcall -noname StrChrIA(str long)
|
366 stdcall -noname StrChrIA(str long)
|
||||||
367 stdcall -noname StrChrIW(wstr long)
|
367 stdcall -noname StrChrIW(wstr long)
|
||||||
|
|
|
@ -763,19 +763,7 @@ LPWSTR WINAPI StrRChrIW(LPCWSTR lpszStr, LPCWSTR lpszEnd, WORD ch)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
* StrSpnW [COMCTL32.364]
|
* StrCSpnW [COMCTL32.364]
|
||||||
*
|
|
||||||
* See StrSpnA.
|
|
||||||
*/
|
|
||||||
int WINAPI StrSpnW(LPCWSTR lpszStr, LPCWSTR lpszMatch)
|
|
||||||
{
|
|
||||||
TRACE("(%s,%s)\n",debugstr_w(lpszStr), debugstr_w(lpszMatch));
|
|
||||||
|
|
||||||
return COMCTL32_StrSpnHelperW(lpszStr, lpszMatch, StrChrW, FALSE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*************************************************************************
|
|
||||||
* StrCSpnW [COMCTL32.@]
|
|
||||||
*
|
*
|
||||||
* See StrCSpnA.
|
* See StrCSpnA.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue