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
acbfab38
Commit
acbfab38
authored
Nov 26, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp100: Added _Container_base0::operator= implementation.
parent
a704d2a4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
24 deletions
+32
-24
misc.c
dlls/msvcp100/misc.c
+30
-0
msvcp100.c
dlls/msvcp100/msvcp100.c
+0
-22
msvcp100.spec
dlls/msvcp100/msvcp100.spec
+2
-2
No files found.
dlls/msvcp100/misc.c
View file @
acbfab38
...
...
@@ -229,3 +229,33 @@ MSVCP_new_handler_func __cdecl set_new_handler_reset(int unused)
{
return
set_new_handler
(
NULL
);
}
/* _Container_base0 is used by apps compiled without iterator checking
* (i.e. with _ITERATOR_DEBUG_LEVEL=0 ).
* It provides empty versions of methods used by visual c++'s stl's
* iterator checking.
* msvcr100 has to provide them in case apps are compiled with /Od
* or the optimizer fails to inline those (empty) calls.
*/
/* ?_Orphan_all@_Container_base0@std@@QAEXXZ */
/* ?_Orphan_all@_Container_base0@std@@QEAAXXZ */
DEFINE_THISCALL_WRAPPER
(
Container_base0_Orphan_all
,
4
)
void
__thiscall
Container_base0_Orphan_all
(
void
*
this
)
{
}
/* ?_Swap_all@_Container_base0@std@@QAEXAAU12@@Z */
/* ?_Swap_all@_Container_base0@std@@QEAAXAEAU12@@Z */
DEFINE_THISCALL_WRAPPER
(
Container_base0_Swap_all
,
8
)
void
__thiscall
Container_base0_Swap_all
(
void
*
this
,
void
*
that
)
{
}
/* ??4_Container_base0@std@@QAEAAU01@ABU01@@Z */
/* ??4_Container_base0@std@@QEAAAEAU01@AEBU01@@Z */
DEFINE_THISCALL_WRAPPER
(
Container_base0_op_assign
,
8
)
void
*
__thiscall
Container_base0_op_assign
(
void
*
this
,
const
void
*
that
)
{
return
this
;
}
dlls/msvcp100/msvcp100.c
View file @
acbfab38
...
...
@@ -80,28 +80,6 @@ static void init_cxx_funcs(void)
}
}
/* _Container_base0 is used by apps compiled without iterator checking
* (i.e. with _ITERATOR_DEBUG_LEVEL=0 ).
* It provides empty versions of methods used by visual c++'s stl's
* iterator checking.
* msvcr100 has to provide them in case apps are compiled with /Od
* or the optimizer fails to inline those (empty) calls.
*/
/* ?_Orphan_all@_Container_base0@std@@QAEXXZ */
/* ?_Orphan_all@_Container_base0@std@@QEAAXXZ */
DEFINE_THISCALL_WRAPPER
(
Container_base0_Orphan_all
,
4
)
void
__thiscall
Container_base0_Orphan_all
(
void
*
this
)
{
}
/* ?_Swap_all@_Container_base0@std@@QAEXAAU12@@Z */
/* ?_Swap_all@_Container_base0@std@@QEAAXAEAU12@@Z */
DEFINE_THISCALL_WRAPPER
(
Container_base0_Swap_all
,
8
)
void
__thiscall
Container_base0_Swap_all
(
void
*
this
,
void
*
that
)
{
}
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
...
...
dlls/msvcp100/msvcp100.spec
View file @
acbfab38
...
...
@@ -400,8 +400,8 @@
@ cdecl -arch=win64 ??4?$numeric_limits@_W@std@@QEAAAEAV01@AEBV01@@Z(ptr ptr) std_Num_base_op_assign
@ thiscall -arch=win32 ??4Init@ios_base@std@@QAEAAV012@ABV012@@Z(ptr ptr) ios_base_Init_op_assign
@ cdecl -arch=win64 ??4Init@ios_base@std@@QEAAAEAV012@AEBV012@@Z(ptr ptr) ios_base_Init_op_assign
@
stub -arch=win32 ??4_Container_base0@std@@QAEAAU01@ABU01@@Z
@
stub -arch=win64 ??4_Container_base0@std@@QEAAAEAU01@AEBU01@@Z
@
thiscall -arch=win32 ??4_Container_base0@std@@QAEAAU01@ABU01@@Z(ptr ptr) Container_base0_op_assign
@
cdecl -arch=win64 ??4_Container_base0@std@@QEAAAEAU01@AEBU01@@Z(ptr ptr) Container_base0_op_assign
@ stub -arch=win32 ??4_Container_base12@std@@QAEAAU01@ABU01@@Z
@ stub -arch=win64 ??4_Container_base12@std@@QEAAAEAU01@AEBU01@@Z
@ stub -arch=win32 ??4_Init_locks@std@@QAEAAV01@ABV01@@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