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
370873f9
Commit
370873f9
authored
Oct 25, 2009
by
Jerome Leclanche
Committed by
Alexandre Julliard
Oct 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcirt: Implement MSVCIRT_operator_sl_callback.
parent
8a860e4c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
msvcirt.c
dlls/msvcirt/msvcirt.c
+11
-0
msvcirt.spec
dlls/msvcirt/msvcirt.spec
+1
-1
No files found.
dlls/msvcirt/msvcirt.c
View file @
370873f9
...
...
@@ -73,6 +73,17 @@ void * __stdcall MSVCIRT_operator_sl_pchar(class_ostream * _this, const char * s
}
/******************************************************************
* ??6ostream@@QAEAAV0@P6AAAV0@AAV0@@Z@Z (MSVCRTI.@)
* class ostream & __thiscall ostream::operator<<(class ostream & (__cdecl*)(class ostream &))
*/
DEFINE_THISCALL_WRAPPER
(
MSVCIRT_operator_sl_callback
,
8
)
void
*
__stdcall
MSVCIRT_operator_sl_callback
(
class_ostream
*
_this
,
class_ostream
*
(
__cdecl
*
func
)(
class_ostream
*
))
{
TRACE
(
"%p, %p
\n
"
,
_this
,
func
);
return
func
(
_this
);
}
/******************************************************************
* ?endl@@YAAAVostream@@AAV1@@Z (MSVCRTI.@)
* class ostream & __cdecl endl(class ostream &)
*/
...
...
dlls/msvcirt/msvcirt.spec
View file @
370873f9
...
...
@@ -141,7 +141,7 @@
@ stub ??6ostream@@QAEAAV0@M@Z # class ostream & __thiscall ostream::operator<<(float)
@ stub ??6ostream@@QAEAAV0@N@Z # class ostream & __thiscall ostream::operator<<(double)
@ stub ??6ostream@@QAEAAV0@O@Z # class ostream & __thiscall ostream::operator<<(long double)
@
stub ??6ostream@@QAEAAV0@P6AAAV0@AAV0@@Z@Z
# class ostream & __thiscall ostream::operator<<(class ostream & (__cdecl*)(class ostream &))
@
cdecl -i386 -norelay ??6ostream@@QAEAAV0@P6AAAV0@AAV0@@Z@Z(ptr ptr) __thiscall_MSVCIRT_operator_sl_callback
# class ostream & __thiscall ostream::operator<<(class ostream & (__cdecl*)(class ostream &))
@ stub ??6ostream@@QAEAAV0@P6AAAVios@@AAV1@@Z@Z # class ostream & __thiscall ostream::operator<<(class ios & (__cdecl*)(class ios &))
@ stub ??6ostream@@QAEAAV0@PAVstreambuf@@@Z # class ostream & __thiscall ostream::operator<<(class streambuf *)
@ stub ??6ostream@@QAEAAV0@PBC@Z # class ostream & __thiscall ostream::operator<<(signed char const *)
...
...
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