[PATCH 4/4 try2] msvcrt: Fixed missing declarations for _wcsncoll, _wcsncoll_l, _wcsicoll_l, _wcsnicoll_l and wcscoll_l.

Jactry Zeng jactry92 at gmail.com
Sat Mar 30 14:54:19 CDT 2013


-------------- next part --------------
From 57b4cb6f80d4a0f064c561f2a2ddf31efe68d41e Mon Sep 17 00:00:00 2001
From: Jactry Zeng <jactry92 at gmail.com>
Date: Sun, 31 Mar 2013 03:42:29 +0800
Subject: msvcrt: Fixed missing declarations for _wcsncoll, _wcsncoll_l,
 _wcsicoll_l, _wcsnicoll_l and wcscoll_l.

---
 include/msvcrt/wchar.h |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/msvcrt/wchar.h b/include/msvcrt/wchar.h
index 028e2cb..c44a78f 100644
--- a/include/msvcrt/wchar.h
+++ b/include/msvcrt/wchar.h
@@ -403,10 +403,14 @@ int           __cdecl wctomb(char*,wchar_t);
 #define _WSTRING_DEFINED
 wchar_t* __cdecl _wcsdup(const wchar_t*);
 int      __cdecl _wcsicmp(const wchar_t*,const 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 _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 _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);
@@ -417,6 +421,7 @@ errno_t  __cdecl wcscat_s(wchar_t*,size_t,const wchar_t*);
 wchar_t* __cdecl wcschr(const wchar_t*,wchar_t);
 int      __cdecl wcscmp(const wchar_t*,const wchar_t*);
 int      __cdecl wcscoll(const wchar_t*,const wchar_t*);
+int      __cdecl _wcscoll_l(const wchar_t*,const wchar_t*,_locale_t);
 wchar_t* __cdecl wcscpy(wchar_t*,const wchar_t*);
 errno_t  __cdecl wcscpy_s(wchar_t*,size_t,const wchar_t*);
 size_t   __cdecl wcscspn(const wchar_t*,const wchar_t*);
-- 
1.7.9.5


More information about the wine-patches mailing list