mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
msvcrt: Add missing declarations for _wcsncoll, _wcsncoll_l, _wcsicoll_l, _wcsnicoll_l and wcscoll_l.
This commit is contained in:
parent
5af20ef180
commit
8c53b6fde4
1 changed files with 5 additions and 0 deletions
|
@ -401,12 +401,17 @@ int __cdecl wctomb(char*,wchar_t);
|
|||
|
||||
#ifndef _WSTRING_DEFINED
|
||||
#define _WSTRING_DEFINED
|
||||
int __cdecl _wcscoll_l(const wchar_t*,const wchar_t*,_locale_t);
|
||||
wchar_t* __cdecl _wcsdup(const wchar_t*);
|
||||
int __cdecl _wcsicmp(const wchar_t*,const wchar_t*);
|
||||
int __cdecl _wcsicoll(const wchar_t*,const wchar_t*);
|
||||
int __cdecl _wcsicoll_l(const wchar_t*,const wchar_t*,_locale_t);
|
||||
wchar_t* __cdecl _wcslwr(wchar_t*);
|
||||
int __cdecl _wcsncoll(const wchar_t*,const wchar_t*,size_t);
|
||||
int __cdecl _wcsncoll_l(const wchar_t*,const wchar_t*,size_t,_locale_t);
|
||||
int __cdecl _wcsnicmp(const wchar_t*,const wchar_t*,size_t);
|
||||
int __cdecl _wcsnicoll(const wchar_t*,const wchar_t*,size_t);
|
||||
int __cdecl _wcsnicoll_l(const wchar_t*,const wchar_t*,size_t,_locale_t);
|
||||
wchar_t* __cdecl _wcsnset(wchar_t*,wchar_t,size_t);
|
||||
wchar_t* __cdecl _wcsrev(wchar_t*);
|
||||
wchar_t* __cdecl _wcsset(wchar_t*,wchar_t);
|
||||
|
|
Loading…
Reference in a new issue