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
9abffde3
Commit
9abffde3
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::delbuf.
parent
0fa25792
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
msvcirt.c
dlls/msvcirt/msvcirt.c
+4
-3
No files found.
dlls/msvcirt/msvcirt.c
View file @
9abffde3
...
...
@@ -878,7 +878,8 @@ void __cdecl ios_clrlock(ios *this)
DEFINE_THISCALL_WRAPPER
(
ios_delbuf_set
,
8
)
void
__thiscall
ios_delbuf_set
(
ios
*
this
,
int
delete
)
{
FIXME
(
"(%p %d) stub
\n
"
,
this
,
delete
);
TRACE
(
"(%p %d)
\n
"
,
this
,
delete
);
this
->
delbuf
=
delete
;
}
/* ?delbuf@ios@@QBEHXZ */
...
...
@@ -886,8 +887,8 @@ void __thiscall ios_delbuf_set(ios *this, int delete)
DEFINE_THISCALL_WRAPPER
(
ios_delbuf_get
,
4
)
int
__thiscall
ios_delbuf_get
(
const
ios
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
0
;
TRACE
(
"(%p)
\n
"
,
this
);
return
this
->
delbuf
;
}
/* ?dec@@YAAAVios@@AAV1@@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