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
c7c86242
Commit
c7c86242
authored
Jan 22, 2024
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp: Consistently use __int64 types in number conversion functions.
This avoids unaligned access warnings with clang.
parent
d46021ba
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
msvcp.h
dlls/msvcp60/msvcp.h
+4
-4
locale.c
dlls/msvcp90/locale.c
+0
-0
msvcp90.h
dlls/msvcp90/msvcp90.h
+4
-4
No files found.
dlls/msvcp60/msvcp.h
View file @
c7c86242
...
...
@@ -388,9 +388,9 @@ istreambuf_iterator_char *__thiscall num_get_char_get_ldouble(const num_get*, is
istreambuf_iterator_char
*
__thiscall
num_get_char_get_void
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
void
**
);
istreambuf_iterator_char
*
__thiscall
num_get_char_get_int64
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
LONGLONG
*
);
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
__int64
*
);
istreambuf_iterator_char
*
__thiscall
num_get_char_get_uint64
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
ULONGLONG
*
);
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
unsigned
__int64
*
);
istreambuf_iterator_char
*
__thiscall
num_get_char_get_bool
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
bool
*
);
...
...
@@ -413,9 +413,9 @@ istreambuf_iterator_wchar *__thiscall num_get_wchar_get_ldouble(const num_get*,
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_void
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
void
**
);
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_int64
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
LONGLONG
*
);
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
__int64
*
);
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_uint64
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
ULONGLONG
*
);
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
unsigned
__int64
*
);
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_bool
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
bool
*
);
...
...
dlls/msvcp90/locale.c
View file @
c7c86242
This diff is collapsed.
Click to expand it.
dlls/msvcp90/msvcp90.h
View file @
c7c86242
...
...
@@ -586,9 +586,9 @@ istreambuf_iterator_char *__thiscall num_get_char_get_ldouble(const num_get*, is
istreambuf_iterator_char
*
__thiscall
num_get_char_get_void
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
void
**
);
istreambuf_iterator_char
*
__thiscall
num_get_char_get_int64
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
LONGLONG
*
);
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
__int64
*
);
istreambuf_iterator_char
*
__thiscall
num_get_char_get_uint64
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
ULONGLONG
*
);
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
unsigned
__int64
*
);
istreambuf_iterator_char
*
__thiscall
num_get_char_get_bool
(
const
num_get
*
,
istreambuf_iterator_char
*
,
istreambuf_iterator_char
,
istreambuf_iterator_char
,
ios_base
*
,
int
*
,
bool
*
);
...
...
@@ -611,9 +611,9 @@ istreambuf_iterator_wchar *__thiscall num_get_wchar_get_ldouble(const num_get*,
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_void
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
void
**
);
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_int64
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
LONGLONG
*
);
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
__int64
*
);
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_uint64
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
ULONGLONG
*
);
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
unsigned
__int64
*
);
istreambuf_iterator_wchar
*
__thiscall
num_get_wchar_get_bool
(
const
num_get
*
,
istreambuf_iterator_wchar
*
,
istreambuf_iterator_wchar
,
istreambuf_iterator_wchar
,
ios_base
*
,
int
*
,
bool
*
);
...
...
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