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
3c5328dc
Commit
3c5328dc
authored
Jul 17, 2015
by
Iván Matellanes
Committed by
Alexandre Julliard
Jul 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcirt: Implement ios manipulators.
parent
bc90e1c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
msvcirt.c
dlls/msvcirt/msvcirt.c
+7
-3
No files found.
dlls/msvcirt/msvcirt.c
View file @
3c5328dc
...
...
@@ -90,6 +90,7 @@ typedef struct {
ios
*
__thiscall
ios_assign
(
ios
*
,
const
ios
*
);
int
__thiscall
ios_fail
(
const
ios
*
);
void
__cdecl
ios_lock
(
ios
*
);
LONG
__thiscall
ios_setf_mask
(
ios
*
,
LONG
,
LONG
);
void
__cdecl
ios_unlock
(
ios
*
);
/* class ostream */
...
...
@@ -905,7 +906,8 @@ int __thiscall ios_delbuf_get(const ios *this)
/* ?dec@@YAAEAVios@@AEAV1@@Z */
ios
*
__cdecl
ios_dec
(
ios
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
TRACE
(
"(%p)
\n
"
,
this
);
ios_setf_mask
(
this
,
FLAGS_dec
,
ios_basefield
);
return
this
;
}
...
...
@@ -984,7 +986,8 @@ int __thiscall ios_good(const ios *this)
/* ?hex@@YAAEAVios@@AEAV1@@Z */
ios
*
__cdecl
ios_hex
(
ios
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
TRACE
(
"(%p)
\n
"
,
this
);
ios_setf_mask
(
this
,
FLAGS_hex
,
ios_basefield
);
return
this
;
}
...
...
@@ -1049,7 +1052,8 @@ CRITICAL_SECTION* __thiscall ios_lockptr(ios *this)
/* ?oct@@YAAEAVios@@AEAV1@@Z */
ios
*
__cdecl
ios_oct
(
ios
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
TRACE
(
"(%p)
\n
"
,
this
);
ios_setf_mask
(
this
,
FLAGS_oct
,
ios_basefield
);
return
this
;
}
...
...
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