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
9f9a4a18
Commit
9f9a4a18
authored
Jun 12, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added basic_filebuf<char> implementation.
parent
65db238d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
16 deletions
+27
-16
ios.c
dlls/msvcp90/ios.c
+0
-0
locale.c
dlls/msvcp90/locale.c
+1
-16
msvcp90.h
dlls/msvcp90/msvcp90.h
+26
-0
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+0
-0
No files found.
dlls/msvcp90/ios.c
View file @
9f9a4a18
This diff is collapsed.
Click to expand it.
dlls/msvcp90/locale.c
View file @
9f9a4a18
...
...
@@ -105,21 +105,6 @@ typedef struct {
_Cvtvec
cvt
;
}
ctype_wchar
;
typedef
enum
{
CODECVT_ok
=
0
,
CODECVT_partial
=
1
,
CODECVT_error
=
2
,
CODECVT_noconv
=
3
}
codecvt_base_result
;
typedef
struct
{
locale_facet
facet
;
}
codecvt_base
;
typedef
struct
{
codecvt_base
base
;
}
codecvt_char
;
typedef
struct
{
locale_facet
facet
;
const
char
*
grouping
;
...
...
@@ -2674,7 +2659,7 @@ MSVCP_size_t __cdecl codecvt_char__Getcat(const locale_facet **facet, const loca
return
LC_CTYPE
;
}
codecvt_char
*
codecvt_char_use_facet
(
locale
*
loc
)
codecvt_char
*
codecvt_char_use_facet
(
const
locale
*
loc
)
{
static
codecvt_char
*
obj
=
NULL
;
...
...
dlls/msvcp90/msvcp90.h
View file @
9f9a4a18
...
...
@@ -263,6 +263,31 @@ typedef struct {
MSVCP_size_t
refs
;
}
locale_facet
;
typedef
enum
{
CODECVT_ok
=
0
,
CODECVT_partial
=
1
,
CODECVT_error
=
2
,
CODECVT_noconv
=
3
}
codecvt_base_result
;
/* class codecvt_base */
typedef
struct
{
locale_facet
facet
;
}
codecvt_base
;
/* class codecvt<char> */
typedef
struct
{
codecvt_base
base
;
}
codecvt_char
;
MSVCP_bool
__thiscall
codecvt_base_always_noconv
(
const
codecvt_base
*
);
int
__thiscall
codecvt_char_unshift
(
const
codecvt_char
*
,
int
*
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_char_out
(
const
codecvt_char
*
,
int
*
,
const
char
*
,
const
char
*
,
const
char
**
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_char_in
(
const
codecvt_char
*
,
int
*
,
const
char
*
,
const
char
*
,
const
char
**
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_base_max_length
(
const
codecvt_base
*
);
/* class locale */
typedef
struct
{
...
...
@@ -274,6 +299,7 @@ locale* __thiscall locale_copy_ctor(locale*, const locale*);
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
*
);
/* class _Lockit */
typedef
struct
{
...
...
dlls/msvcp90/msvcp90.spec
View file @
9f9a4a18
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