Daniel Lehman : include: Add _tcsxfrm_l declaration.

Alexandre Julliard julliard at winehq.org
Thu Jul 22 16:28:20 CDT 2021


Module: wine
Branch: master
Commit: c518a5362b925379b1a79e8323d60e19863effc1
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=c518a5362b925379b1a79e8323d60e19863effc1

Author: Daniel Lehman <dlehman at esri.com>
Date:   Thu Jul 22 10:25:50 2021 -0700

include: Add _tcsxfrm_l declaration.

Signed-off-by: Daniel Lehman <dlehman at esri.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/msvcrt/corecrt_wstring.h | 1 +
 include/msvcrt/string.h          | 1 +
 include/tchar.h                  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/include/msvcrt/corecrt_wstring.h b/include/msvcrt/corecrt_wstring.h
index 53537185f43..00e7863b5c3 100644
--- a/include/msvcrt/corecrt_wstring.h
+++ b/include/msvcrt/corecrt_wstring.h
@@ -47,6 +47,7 @@ _ACRTIMP wchar_t* __cdecl _wcsrev(wchar_t*);
 _ACRTIMP wchar_t* __cdecl _wcsset(wchar_t*,wchar_t);
 _ACRTIMP wchar_t* __cdecl _wcsupr(wchar_t*);
 _ACRTIMP errno_t  __cdecl _wcsupr_s(wchar_t*, size_t);
+_ACRTIMP size_t   __cdecl _wcsxfrm_l(wchar_t*,const wchar_t*,size_t,_locale_t);
 
 _ACRTIMP wchar_t* __cdecl wcscat(wchar_t*,const wchar_t*);
 _ACRTIMP errno_t  __cdecl wcscat_s(wchar_t*,size_t,const wchar_t*);
diff --git a/include/msvcrt/string.h b/include/msvcrt/string.h
index 2beb429f036..5e3d51076c6 100644
--- a/include/msvcrt/string.h
+++ b/include/msvcrt/string.h
@@ -40,6 +40,7 @@ _ACRTIMP char* __cdecl _strrev(char*);
 _ACRTIMP char* __cdecl _strset(char*,int);
 _ACRTIMP char* __cdecl _strupr(char*);
 _ACRTIMP errno_t __cdecl _strupr_s(char *, size_t);
+_ACRTIMP size_t  __cdecl _strxfrm_l(char*,const char*,size_t,_locale_t);
 
 _ACRTIMP errno_t __cdecl memmove_s(void*,size_t,const void*,size_t);
 _ACRTIMP char*   __cdecl strcat(char*,const char*);
diff --git a/include/tchar.h b/include/tchar.h
index a8e64b4bf6a..1231edc565c 100644
--- a/include/tchar.h
+++ b/include/tchar.h
@@ -154,6 +154,7 @@ extern "C" {
 #define _tcsupr       WINE_tchar_routine(_strupr,         _mbsupr,     _wcsupr)
 #define _tcsupr_s     WINE_tchar_routine(_strupr_s,       _mbsupr_s,   _wcsupr_s)
 #define _tcsxfrm      WINE_tchar_routine(strxfrm,         strxfrm,     wcsxfrm)
+#define _tcsxfrm_l    WINE_tchar_routine(_strxfrm_l,      _strxfrm_l,  _ wcsxfrm_l)
 #define _tctime       WINE_tchar_routine(ctime,           ctime,       _wctime)
 #define _tenviron     WINE_tchar_routine(_environ,        _environ,    _wenviron)
 #define _texecl       WINE_tchar_routine(execl,           _execl,      _wexecl)




More information about the wine-cvs mailing list