Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
c695ec59
Commit
c695ec59
authored
Jun 13, 2022
by
Daniel Lehman
Committed by
Alexandre Julliard
Jun 20, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add _tcsto[u]ll declarations.
Signed-off-by:
Daniel Lehman
<
dlehman25@gmail.com
>
parent
f99cb329
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
corecrt_wstdlib.h
include/msvcrt/corecrt_wstdlib.h
+4
-0
stdlib.h
include/msvcrt/stdlib.h
+2
-2
tchar.h
include/tchar.h
+4
-0
No files found.
include/msvcrt/corecrt_wstdlib.h
View file @
c695ec59
...
...
@@ -57,6 +57,10 @@ _ACRTIMP __int64 __cdecl _wcstoi64(const wchar_t*,wchar_t**,int);
_ACRTIMP
__int64
__cdecl
_wcstoi64_l
(
const
wchar_t
*
,
wchar_t
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
_wcstoui64
(
const
wchar_t
*
,
wchar_t
**
,
int
);
_ACRTIMP
unsigned
__int64
__cdecl
_wcstoui64_l
(
const
wchar_t
*
,
wchar_t
**
,
int
,
_locale_t
);
_ACRTIMP
__int64
__cdecl
wcstoll
(
const
wchar_t
*
,
wchar_t
**
,
int
);
_ACRTIMP
__int64
__cdecl
_wcstoll_l
(
const
wchar_t
*
,
wchar_t
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
wcstoull
(
const
wchar_t
*
,
wchar_t
**
,
int
);
_ACRTIMP
unsigned
__int64
__cdecl
_wcstoull_l
(
const
wchar_t
*
,
wchar_t
**
,
int
,
_locale_t
);
#ifdef __cplusplus
}
...
...
include/msvcrt/stdlib.h
View file @
c695ec59
...
...
@@ -227,8 +227,8 @@ _ACRTIMP float __cdecl strtof(const char*,char**);
_ACRTIMP
double
__cdecl
strtod
(
const
char
*
,
char
**
);
_ACRTIMP
__msvcrt_long
__cdecl
strtol
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
__msvcrt_ulong
__cdecl
strtoul
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
__int64
__cdecl
strtoll_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
strtoull_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
__int64
__cdecl
_
strtoll_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
_
strtoull_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
__int64
__cdecl
strtoimax
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
__int64
__cdecl
strtoimax_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
strtoumax
(
const
char
*
,
char
**
,
int
);
...
...
include/tchar.h
View file @
c695ec59
...
...
@@ -150,7 +150,11 @@ extern "C" {
#define _tcstod WINE_tchar_routine(strtod, strtod, wcstod)
#define _tcstok WINE_tchar_routine(strtok, _mbstok, _wcstok)
#define _tcstol WINE_tchar_routine(strtol, strtol, wcstol)
#define _tcstoll WINE_tchar_routine(strtoll, strtoll, wcstoll)
#define _tcstoll_l WINE_tchar_routine(_strtoll_l, _strtoll_l, _wcstoll_l)
#define _tcstoul WINE_tchar_routine(strtoul, strtoul, wcstoul)
#define _tcstoull WINE_tchar_routine(strtoull, strtoull, wcstoull)
#define _tcstoull_l WINE_tchar_routine(_strtoull_l, _strtoull_l, _wcstoull_l)
#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)
...
...
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