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
de8fe962
Commit
de8fe962
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_base12 class implementation.
parent
acbfab38
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
98 additions
and
14 deletions
+98
-14
misc.c
dlls/msvcp100/misc.c
+84
-0
msvcp100.spec
dlls/msvcp100/msvcp100.spec
+14
-14
No files found.
dlls/msvcp100/misc.c
View file @
de8fe962
...
...
@@ -28,6 +28,22 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcp
);
struct
__Container_proxy
;
typedef
struct
{
struct
__Container_proxy
*
proxy
;
}
_Container_base12
;
typedef
struct
__Iterator_base12
{
struct
__Container_proxy
*
proxy
;
struct
__Iterator_base12
*
next
;
}
_Iterator_base12
;
typedef
struct
__Container_proxy
{
const
_Container_base12
*
cont
;
_Iterator_base12
*
head
;
}
_Container_proxy
;
/* ??0_Mutex@std@@QAE@XZ */
/* ??0_Mutex@std@@QEAA@XZ */
DEFINE_THISCALL_WRAPPER
(
mutex_ctor
,
4
)
...
...
@@ -259,3 +275,71 @@ void* __thiscall Container_base0_op_assign(void *this, const void *that)
{
return
this
;
}
/* ??0_Container_base12@std@@QAE@ABU01@@Z */
/* ??0_Container_base12@std@@QEAA@AEBU01@@Z */
DEFINE_THISCALL_WRAPPER
(
_Container_base12_copy_ctor
,
8
)
_Container_base12
*
__thiscall
_Container_base12_copy_ctor
(
_Container_base12
*
this
,
_Container_base12
*
that
)
{
this
->
proxy
=
NULL
;
return
this
;
}
/* ??0_Container_base12@std@@QAE@XZ */
/* ??0_Container_base12@std@@QEAA@XZ */
DEFINE_THISCALL_WRAPPER
(
_Container_base12_ctor
,
4
)
_Container_base12
*
__thiscall
_Container_base12_ctor
(
_Container_base12
*
this
)
{
this
->
proxy
=
NULL
;
return
this
;
}
/* ??1_Container_base12@std@@QAE@XZ */
/* ??1_Container_base12@std@@QEAA@XZ */
DEFINE_THISCALL_WRAPPER
(
_Container_base12_dtor
,
4
)
void
__thiscall
_Container_base12_dtor
(
_Container_base12
*
this
)
{
}
/* ??4_Container_base12@std@@QAEAAU01@ABU01@@Z */
/* ??4_Container_base12@std@@QEAAAEAU01@AEBU01@@ */
DEFINE_THISCALL_WRAPPER
(
_Container_base12_op_assign
,
8
)
_Container_base12
*
__thiscall
_Container_base12_op_assign
(
_Container_base12
*
this
,
const
_Container_base12
*
that
)
{
return
this
;
}
/* ?_Getpfirst@_Container_base12@std@@QBEPAPAU_Iterator_base12@2@XZ */
/* ?_Getpfirst@_Container_base12@std@@QEBAPEAPEAU_Iterator_base12@2@XZ */
DEFINE_THISCALL_WRAPPER
(
_Container_base12__Getpfirst
,
4
)
_Iterator_base12
**
__thiscall
_Container_base12__Getpfirst
(
_Container_base12
*
this
)
{
return
this
->
proxy
?
&
this
->
proxy
->
head
:
NULL
;
}
/* ?_Orphan_all@_Container_base12@std@@QAEXXZ */
/* ?_Orphan_all@_Container_base12@std@@QEAAXXZ */
DEFINE_THISCALL_WRAPPER
(
_Container_base12__Orphan_all
,
4
)
void
__thiscall
_Container_base12__Orphan_all
(
_Container_base12
*
this
)
{
}
/* ?_Swap_all@_Container_base12@std@@QAEXAAU12@@Z */
/* ?_Swap_all@_Container_base12@std@@QEAAXAEAU12@@Z */
DEFINE_THISCALL_WRAPPER
(
_Container_base12__Swap_all
,
8
)
void
__thiscall
_Container_base12__Swap_all
(
_Container_base12
*
this
,
_Container_base12
*
that
)
{
_Container_proxy
*
tmp
;
tmp
=
this
->
proxy
;
this
->
proxy
=
that
->
proxy
;
that
->
proxy
=
tmp
;
if
(
this
->
proxy
)
this
->
proxy
->
cont
=
this
;
if
(
that
->
proxy
)
that
->
proxy
->
cont
=
that
;
}
dlls/msvcp100/msvcp100.spec
View file @
de8fe962
...
...
@@ -176,10 +176,10 @@
@ stub -arch=win64 ??0_Concurrent_queue_base_v4@details@Concurrency@@IEAA@_K@Z
@ stub -arch=win32 ??0_Concurrent_queue_iterator_base_v4@details@Concurrency@@IAE@ABV_Concurrent_queue_base_v4@12@@Z
@ stub -arch=win64 ??0_Concurrent_queue_iterator_base_v4@details@Concurrency@@IEAA@AEBV_Concurrent_queue_base_v4@12@@Z
@
stub -arch=win32 ??0_Container_base12@std@@QAE@ABU01@@Z
@
stub -arch=win64 ??0_Container_base12@std@@QEAA@AEBU01@@Z
@
stub -arch=win32 ??0_Container_base12@std@@QAE@XZ
@
stub -arch=win64 ??0_Container_base12@std@@QEAA@XZ
@
thiscall -arch=win32 ??0_Container_base12@std@@QAE@ABU01@@Z(ptr ptr) _Container_base12_copy_ctor
@
cdecl -arch=win64 ??0_Container_base12@std@@QEAA@AEBU01@@Z(ptr ptr) _Container_base12_copy_ctor
@
thiscall -arch=win32 ??0_Container_base12@std@@QAE@XZ(ptr) _Container_base12_ctor
@
cdecl -arch=win64 ??0_Container_base12@std@@QEAA@XZ(ptr) _Container_base12_ctor
@ stub -arch=win32 ??0_Init_locks@std@@QAE@XZ
@ stub -arch=win64 ??0_Init_locks@std@@QEAA@XZ
@ thiscall -arch=win32 ??0_Locimp@locale@std@@AAE@ABV012@@Z(ptr ptr) locale__Locimp_copy_ctor
...
...
@@ -306,8 +306,8 @@
@ stub -arch=win64 ??1_Concurrent_queue_iterator_base_v4@details@Concurrency@@IEAA@XZ
@ stub -arch=win32 ??1_Concurrent_vector_base_v4@details@Concurrency@@IAE@XZ
@ stub -arch=win64 ??1_Concurrent_vector_base_v4@details@Concurrency@@IEAA@XZ
@
stub -arch=win32 ??1_Container_base12@std@@QAE@XZ
@
stub -arch=win64 ??1_Container_base12@std@@QEAA@XZ
@
thiscall -arch=win32 ??1_Container_base12@std@@QAE@XZ(ptr) _Container_base12_dtor
@
cdecl -arch=win64 ??1_Container_base12@std@@QEAA@XZ(ptr) _Container_base12_dtor
@ stub -arch=win32 ??1_Init_locks@std@@QAE@XZ
@ stub -arch=win64 ??1_Init_locks@std@@QEAA@XZ
@ thiscall -arch=win32 ??1_Locimp@locale@std@@MAE@XZ(ptr) locale__Locimp_dtor
...
...
@@ -402,8 +402,8 @@
@ cdecl -arch=win64 ??4Init@ios_base@std@@QEAAAEAV012@AEBV012@@Z(ptr ptr) ios_base_Init_op_assign
@ 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
@
thiscall -arch=win32 ??4_Container_base12@std@@QAEAAU01@ABU01@@Z(ptr ptr) _Container_base12_op_assign
@
cdecl -arch=win64 ??4_Container_base12@std@@QEAAAEAU01@AEBU01@@Z(ptr ptr) _Container_base12_op_assign
@ stub -arch=win32 ??4_Init_locks@std@@QAEAAV01@ABV01@@Z
@ stub -arch=win64 ??4_Init_locks@std@@QEAAAEAV01@AEBV01@@Z
@ thiscall -arch=win32 ??4_Num_base@std@@QAEAAU01@ABU01@@Z(ptr ptr) std_Num_base_op_assign
...
...
@@ -897,8 +897,8 @@
@ cdecl -arch=win64 ?_Getmonths@_Locinfo@std@@QEBAPEBDXZ(ptr) _Locinfo__Getmonths
@ stub -arch=win32 ?_Getname@_Locinfo@std@@QBEPBDXZ
@ stub -arch=win64 ?_Getname@_Locinfo@std@@QEBAPEBDXZ
@
stub -arch=win32 ?_Getpfirst@_Container_base12@std@@QBEPAPAU_Iterator_base12@2@XZ
@
stub -arch=win64 ?_Getpfirst@_Container_base12@std@@QEBAPEAPEAU_Iterator_base12@2@XZ
@
thiscall -arch=win32 ?_Getpfirst@_Container_base12@std@@QBEPAPAU_Iterator_base12@2@XZ(ptr) _Container_base12__Getpfirst
@
cdecl -arch=win64 ?_Getpfirst@_Container_base12@std@@QEBAPEAPEAU_Iterator_base12@2@XZ(ptr) _Container_base12__Getpfirst
@ thiscall -arch=win32 ?_Getptr@_Timevec@std@@QBEPAXXZ(ptr) _Timevec__Getptr
@ cdecl -arch=win64 ?_Getptr@_Timevec@std@@QEBAPEAXXZ(ptr) _Timevec__Getptr
@ thiscall -arch=win32 ?_Gettnames@_Locinfo@std@@QBE?AV_Timevec@2@XZ(ptr ptr) _Locinfo__Gettnames
...
...
@@ -1125,8 +1125,8 @@
@ cdecl ?_Nomemory@std@@YAXXZ() _Nomemory
@ thiscall -arch=win32 ?_Orphan_all@_Container_base0@std@@QAEXXZ(ptr) Container_base0_Orphan_all
@ cdecl -arch=win64 ?_Orphan_all@_Container_base0@std@@QEAAXXZ(ptr) Container_base0_Orphan_all
@
stub -arch=win32 ?_Orphan_all@_Container_base12@std@@QAEXXZ
@
stub -arch=win64 ?_Orphan_all@_Container_base12@std@@QEAAXXZ
@
thiscall -arch=win32 ?_Orphan_all@_Container_base12@std@@QAEXXZ(ptr) _Container_base12__Orphan_all
@
cdecl -arch=win64 ?_Orphan_all@_Container_base12@std@@QEAAXXZ(ptr) _Container_base12__Orphan_all
@ thiscall -arch=win32 ?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ(ptr) basic_ostream_char__Osfx
@ cdecl -arch=win64 ?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QEAAXXZ(ptr) basic_ostream_char__Osfx
@ thiscall -arch=win32 ?_Osfx@?$basic_ostream@GU?$char_traits@G@std@@@std@@QAEXXZ(ptr) basic_ostream_wchar__Osfx
...
...
@@ -1204,8 +1204,8 @@
@ cdecl -arch=win64 ?_Setgloballocale@locale@std@@CAXPEAX@Z(ptr) locale__Setgloballocale
@ thiscall -arch=win32 ?_Swap_all@_Container_base0@std@@QAEXAAU12@@Z(ptr ptr) Container_base0_Swap_all
@ cdecl -arch=win64 ?_Swap_all@_Container_base0@std@@QEAAXAEAU12@@Z(ptr ptr) Container_base0_Swap_all
@
stub -arch=win32 ?_Swap_all@_Container_base12@std@@QAEXAAU12@@Z
@
stub -arch=win64 ?_Swap_all@_Container_base12@std@@QEAAXAEAU12@@Z
@
thiscall -arch=win32 ?_Swap_all@_Container_base12@std@@QAEXAAU12@@Z(ptr ptr) _Container_base12__Swap_all
@
cdecl -arch=win64 ?_Swap_all@_Container_base12@std@@QEAAXAEAU12@@Z(ptr ptr) _Container_base12__Swap_all
@ extern ?_Sync@ios_base@std@@0_NA ios_base_Sync
@ thiscall -arch=win32 ?_Tidy@?$_Yarn@D@std@@AAEXXZ(ptr) _Yarn_char__Tidy
@ cdecl -arch=win64 ?_Tidy@?$_Yarn@D@std@@AEAAXXZ(ptr) _Yarn_char__Tidy
...
...
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