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
49547f8b
Commit
49547f8b
authored
Nov 15, 2023
by
Jactry Zeng
Committed by
Alexandre Julliard
Nov 16, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140: Add codecvt<char32> class stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=47609
parent
b0ad8b8c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
0 deletions
+14
-0
msvcp140.spec
dlls/msvcp140/msvcp140.spec
+0
-0
locale.c
dlls/msvcp90/locale.c
+0
-0
msvcp90.h
dlls/msvcp90/msvcp90.h
+14
-0
msvcp_win.spec
dlls/msvcp_win/msvcp_win.spec
+0
-0
No files found.
dlls/msvcp140/msvcp140.spec
View file @
49547f8b
This diff is collapsed.
Click to expand it.
dlls/msvcp90/locale.c
View file @
49547f8b
This diff is collapsed.
Click to expand it.
dlls/msvcp90/msvcp90.h
View file @
49547f8b
...
...
@@ -236,6 +236,20 @@ typedef struct {
codecvt_base
base
;
}
codecvt_char
;
#if _MSVCP_VER >= 140
typedef
enum
convert_mode
{
consume_header
=
4
,
generate_header
=
2
,
little_endian
=
1
}
codecvt_convert_mode
;
/* class codecvt<char32> */
typedef
struct
{
codecvt_base
base
;
}
codecvt_char32
;
#endif
bool
__thiscall
codecvt_base_always_noconv
(
const
codecvt_base
*
);
int
__thiscall
codecvt_char_unshift
(
const
codecvt_char
*
,
_Mbstatet
*
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_char_out
(
const
codecvt_char
*
,
_Mbstatet
*
,
const
char
*
,
...
...
dlls/msvcp_win/msvcp_win.spec
View file @
49547f8b
This diff is collapsed.
Click to expand it.
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