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
ed22f3b1
Commit
ed22f3b1
authored
Aug 14, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added basic_filebuf<wchar> and basic_filebuf<short> implementation.
parent
f65cd1c1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
ios.c
dlls/msvcp90/ios.c
+0
-0
locale.c
dlls/msvcp90/locale.c
+2
-2
msvcp90.h
dlls/msvcp90/msvcp90.h
+8
-1
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+0
-0
No files found.
dlls/msvcp90/ios.c
View file @
ed22f3b1
This diff is collapsed.
Click to expand it.
dlls/msvcp90/locale.c
View file @
ed22f3b1
...
...
@@ -3086,7 +3086,7 @@ unsigned int __cdecl codecvt_wchar__Getcat(const locale_facet **facet, const loc
return
LC_CTYPE
;
}
static
codecvt_wchar
*
codecvt_wchar_use_facet
(
const
locale
*
loc
)
codecvt_wchar
*
codecvt_wchar_use_facet
(
const
locale
*
loc
)
{
static
codecvt_wchar
*
obj
=
NULL
;
...
...
@@ -3138,7 +3138,7 @@ unsigned int __cdecl codecvt_short__Getcat(const locale_facet **facet, const loc
return
LC_CTYPE
;
}
static
codecvt_wchar
*
codecvt_short_use_facet
(
const
locale
*
loc
)
codecvt_wchar
*
codecvt_short_use_facet
(
const
locale
*
loc
)
{
static
codecvt_wchar
*
obj
=
NULL
;
...
...
dlls/msvcp90/msvcp90.h
View file @
ed22f3b1
...
...
@@ -133,6 +133,12 @@ typedef struct {
_Cvtvec
cvt
;
}
codecvt_wchar
;
int
__thiscall
codecvt_wchar_unshift
(
const
codecvt_wchar
*
,
int
*
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_wchar_out
(
const
codecvt_wchar
*
,
int
*
,
const
wchar_t
*
,
const
wchar_t
*
,
const
wchar_t
**
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_wchar_in
(
const
codecvt_wchar
*
,
int
*
,
const
char
*
,
const
char
*
,
const
char
**
,
wchar_t
*
,
wchar_t
*
,
wchar_t
**
);
/* class ctype_base */
typedef
struct
{
locale_facet
facet
;
...
...
@@ -171,7 +177,8 @@ 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
*
);
codecvt_wchar
*
codecvt_wchar_use_facet
(
const
locale
*
);
codecvt_wchar
*
codecvt_short_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 @
ed22f3b1
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