Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9a8d3cc5
Commit
9a8d3cc5
authored
Jan 13, 2012
by
Daniel Lehman
Committed by
Alexandre Julliard
Jan 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add declarations to stdlib.h for _wcstoui64 and _wcstoi64.
parent
cbe1bcd2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
stdlib.h
include/msvcrt/stdlib.h
+4
-0
No files found.
include/msvcrt/stdlib.h
View file @
9a8d3cc5
...
...
@@ -237,6 +237,10 @@ size_t __cdecl wcstombs(char*,const wchar_t*,size_t);
errno_t
__cdecl
wcstombs_s
(
size_t
*
,
char
*
,
size_t
,
const
wchar_t
*
,
size_t
);
__msvcrt_ulong
__cdecl
wcstoul
(
const
wchar_t
*
,
wchar_t
**
,
int
);
int
__cdecl
wctomb
(
char
*
,
wchar_t
);
__int64
__cdecl
_wcstoi64
(
const
wchar_t
*
,
wchar_t
**
,
int
);
__int64
__cdecl
_wcstoi64_l
(
const
wchar_t
*
,
wchar_t
**
,
int
,
_locale_t
);
unsigned
__int64
__cdecl
_wcstoui64
(
const
wchar_t
*
,
wchar_t
**
,
int
);
unsigned
__int64
__cdecl
_wcstoui64_l
(
const
wchar_t
*
,
wchar_t
**
,
int
,
_locale_t
);
#endif
/* _WSTDLIB_DEFINED */
typedef
void
(
__cdecl
*
_invalid_parameter_handler
)(
const
wchar_t
*
,
const
wchar_t
*
,
const
wchar_t
*
,
unsigned
,
uintptr_t
);
...
...
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