Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c518a536
Commit
c518a536
authored
Jul 22, 2021
by
Daniel Lehman
Committed by
Alexandre Julliard
Jul 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add _tcsxfrm_l declaration.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aeabe991
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
corecrt_wstring.h
include/msvcrt/corecrt_wstring.h
+1
-0
string.h
include/msvcrt/string.h
+1
-0
tchar.h
include/tchar.h
+1
-0
No files found.
include/msvcrt/corecrt_wstring.h
View file @
c518a536
...
...
@@ -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
*
);
...
...
include/msvcrt/string.h
View file @
c518a536
...
...
@@ -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
*
);
...
...
include/tchar.h
View file @
c518a536
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment