Module: wine Branch: master Commit: 8c53b6fde4927daabe4a9c7d32ecc07009e73b6d URL: http://source.winehq.org/git/wine.git/?a=commit;h=8c53b6fde4927daabe4a9c7d32...
Author: Jactry Zeng jactry92@gmail.com Date: Sun Mar 31 03:42:29 2013 +0800
msvcrt: Add missing declarations for _wcsncoll, _wcsncoll_l, _wcsicoll_l, _wcsnicoll_l and wcscoll_l.
---
include/msvcrt/wchar.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/include/msvcrt/wchar.h b/include/msvcrt/wchar.h index 028e2cb..27f673c 100644 --- a/include/msvcrt/wchar.h +++ b/include/msvcrt/wchar.h @@ -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);