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
7a89251c
Commit
7a89251c
authored
Jun 16, 2015
by
Iván Matellanes
Committed by
Alexandre Julliard
Jun 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcirt: Print error messages in unimplemented functions.
parent
540f644c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
msvcirt.c
dlls/msvcirt/msvcirt.c
+2
-0
No files found.
dlls/msvcirt/msvcirt.c
View file @
7a89251c
...
...
@@ -358,6 +358,7 @@ DEFINE_THISCALL_WRAPPER(streambuf_overflow, 8)
#define call_streambuf_overflow(this, c) CALL_VTBL_FUNC(this, 28, int, (streambuf*, int), (this, c))
int
__thiscall
streambuf_overflow
(
streambuf
*
this
,
int
c
)
{
ERR
(
"overflow is not implemented in streambuf
\n
"
);
return
EOF
;
}
...
...
@@ -484,6 +485,7 @@ DEFINE_THISCALL_WRAPPER(streambuf_underflow, 4)
#define call_streambuf_underflow(this) CALL_VTBL_FUNC(this, 32, int, (streambuf*), (this))
int
__thiscall
streambuf_underflow
(
streambuf
*
this
)
{
ERR
(
"underflow is not implemented in streambuf
\n
"
);
return
EOF
;
}
...
...
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