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
19bce927
Commit
19bce927
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 operators.
parent
8413edb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
msvcirt.c
dlls/msvcirt/msvcirt.c
+5
-4
No files found.
dlls/msvcirt/msvcirt.c
View file @
19bce927
...
...
@@ -82,6 +82,7 @@ typedef struct {
}
ios
;
ios
*
__thiscall
ios_assign
(
ios
*
,
const
ios
*
);
int
__thiscall
ios_fail
(
const
ios
*
);
void
__cdecl
ios_lock
(
ios
*
);
void
__cdecl
ios_unlock
(
ios
*
);
...
...
@@ -795,8 +796,8 @@ ios* __thiscall ios_assign(ios *this, const ios *rhs)
DEFINE_THISCALL_WRAPPER
(
ios_op_not
,
4
)
int
__thiscall
ios_op_not
(
const
ios
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
0
;
TRACE
(
"(%p)
\n
"
,
this
);
return
ios_fail
(
this
)
;
}
/* ??Bios@@QBEPAXXZ */
...
...
@@ -804,8 +805,8 @@ int __thiscall ios_op_not(const ios *this)
DEFINE_THISCALL_WRAPPER
(
ios_op_void
,
4
)
void
*
__thiscall
ios_op_void
(
const
ios
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
NULL
;
TRACE
(
"(%p)
\n
"
,
this
);
return
ios_fail
(
this
)
?
NULL
:
(
void
*
)
this
;
}
/* ??_Eios@@UAEPAXI@Z */
...
...
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