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
f387c633
Commit
f387c633
authored
Jun 18, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added codecvt<wchar> class stub.
parent
dc295620
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
8 deletions
+15
-8
locale.c
dlls/msvcp90/locale.c
+0
-0
msvcp90.h
dlls/msvcp90/msvcp90.h
+15
-8
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+0
-0
No files found.
dlls/msvcp90/locale.c
View file @
f387c633
This diff is collapsed.
Click to expand it.
dlls/msvcp90/msvcp90.h
View file @
f387c633
...
...
@@ -294,6 +294,13 @@ typedef enum {
CODECVT_noconv
=
3
}
codecvt_base_result
;
typedef
struct
{
LCID
handle
;
unsigned
page
;
const
short
*
table
;
int
delfl
;
}
_Ctypevec
;
/* class codecvt_base */
typedef
struct
{
locale_facet
facet
;
...
...
@@ -315,9 +322,13 @@ int __thiscall codecvt_base_max_length(const codecvt_base*);
typedef
struct
{
LCID
handle
;
unsigned
page
;
const
short
*
table
;
int
delfl
;
}
_Ctypevec
;
}
_Cvtvec
;
/* class codecvt<wchar> */
typedef
struct
{
codecvt_base
base
;
_Cvtvec
cvt
;
}
codecvt_wchar
;
/* class ctype_base */
typedef
struct
{
...
...
@@ -334,11 +345,6 @@ MSVCP_bool __thiscall ctype_char_is_ch(const ctype_char*, short, char);
char
__thiscall
ctype_char_narrow_ch
(
const
ctype_char
*
,
char
,
char
);
char
__thiscall
ctype_char_widen_ch
(
const
ctype_char
*
,
char
);
typedef
struct
{
LCID
handle
;
unsigned
page
;
}
_Cvtvec
;
/* class ctype<wchar> */
typedef
struct
{
ctype_base
base
;
...
...
@@ -361,6 +367,7 @@ locale* __thiscall locale_operator_assign(locale*, const locale*);
void
__thiscall
locale_dtor
(
locale
*
);
void
free_locale
(
void
);
codecvt_char
*
codecvt_char_use_facet
(
const
locale
*
);
codecvt_char
*
codecvt_char_use_facet
(
const
locale
*
);
ctype_char
*
ctype_char_use_facet
(
const
locale
*
);
ctype_wchar
*
ctype_wchar_use_facet
(
const
locale
*
);
...
...
dlls/msvcp90/msvcp90.spec
View file @
f387c633
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