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
59b2639e
Commit
59b2639e
authored
Dec 15, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added collate<unsigned short> class stub.
parent
6254893e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
109 additions
and
0 deletions
+109
-0
locale.c
dlls/msvcp90/locale.c
+109
-0
msvcp90.spec
dlls/msvcp90/msvcp90.spec
+0
-0
No files found.
dlls/msvcp90/locale.c
View file @
59b2639e
...
...
@@ -410,9 +410,13 @@ basic_string_char __thiscall collate_char_transform(const collate *this,
/* ?id@?$collate@_W@std@@2V0locale@2@A */
locale_id
collate_wchar_id
=
{
0
};
/* ?id@?$collate@G@std@@2V0locale@2@A */
locale_id
collate_short_id
=
{
0
};
/* ??_7?$collate@_W@std@@6B@ */
extern
const
vtable_ptr
MSVCP_collate_wchar_vtable
;
/* ??_7?$collate@G@std@@6B@ */
extern
const
vtable_ptr
MSVCP_collate_short_vtable
;
/* ??0?$collate@_W@std@@IAE@PBDI@Z */
/* ??0?$collate@_W@std@@IEAA@PEBD_K@Z */
...
...
@@ -424,6 +428,16 @@ collate* __thiscall collate_wchar_ctor_name(collate *this, const char *name, MSV
return
NULL
;
}
/* ??0?$collate@G@std@@IAE@PBDI@Z */
/* ??0?$collate@G@std@@IEAA@PEBD_K@Z */
DEFINE_THISCALL_WRAPPER
(
collate_short_ctor_name
,
12
)
collate
*
__thiscall
collate_short_ctor_name
(
collate
*
this
,
const
char
*
name
,
MSVCP_size_t
refs
)
{
collate
*
ret
=
collate_wchar_ctor_name
(
this
,
name
,
refs
);
ret
->
facet
.
vtable
=
&
MSVCP_collate_short_vtable
;
return
ret
;
}
/* ??0?$collate@_W@std@@QAE@ABV_Locinfo@1@I@Z */
/* ??0?$collate@_W@std@@QEAA@AEBV_Locinfo@1@_K@Z */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_ctor_locinfo
,
12
)
...
...
@@ -434,6 +448,16 @@ collate* __thiscall collate_wchar_ctor_locinfo(collate *this, _Locinfo *locinfo,
return
NULL
;
}
/* ??0?$collate@G@std@@QAE@ABV_Locinfo@1@I@Z */
/* ??0?$collate@G@std@@QEAA@AEBV_Locinfo@1@_K@Z */
DEFINE_THISCALL_WRAPPER
(
collate_short_ctor_locinfo
,
12
)
collate
*
__thiscall
collate_short_ctor_locinfo
(
collate
*
this
,
_Locinfo
*
locinfo
,
MSVCP_size_t
refs
)
{
collate
*
ret
=
collate_wchar_ctor_locinfo
(
this
,
locinfo
,
refs
);
ret
->
facet
.
vtable
=
&
MSVCP_collate_short_vtable
;
return
ret
;
}
/* ??0?$collate@_W@std@@QAE@I@Z */
/* ??0?$collate@_W@std@@QEAA@_K@Z */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_ctor_refs
,
8
)
...
...
@@ -444,8 +468,20 @@ collate* __thiscall collate_wchar_ctor_refs(collate *this, MSVCP_size_t refs)
return
NULL
;
}
/* ??0?$collate@G@std@@QAE@I@Z */
/* ??0?$collate@G@std@@QEAA@_K@Z */
DEFINE_THISCALL_WRAPPER
(
collate_short_ctor_refs
,
8
)
collate
*
__thiscall
collate_short_ctor_refs
(
collate
*
this
,
MSVCP_size_t
refs
)
{
collate
*
ret
=
collate_wchar_ctor_refs
(
this
,
refs
);
ret
->
facet
.
vtable
=
&
MSVCP_collate_short_vtable
;
return
ret
;
}
/* ??1?$collate@_W@std@@MAE@XZ */
/* ??1?$collate@_W@std@@MEAA@XZ */
/* ??1?$collate@G@std@@MAE@XZ */
/* ??1?$collate@G@std@@MEAA@XZ */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_dtor
,
4
)
void
__thiscall
collate_wchar_dtor
(
collate
*
this
)
{
...
...
@@ -472,6 +508,12 @@ collate* __thiscall MSVCP_collate_wchar_vector_dtor(collate *this, unsigned int
return
this
;
}
DEFINE_THISCALL_WRAPPER
(
MSVCP_collate_short_vector_dtor
,
8
)
collate
*
__thiscall
MSVCP_collate_short_vector_dtor
(
collate
*
this
,
unsigned
int
flags
)
{
return
MSVCP_collate_wchar_vector_dtor
(
this
,
flags
);
}
/* ??_F?$collate@_W@std@@QAEXXZ */
/* ??_F?$collate@_W@std@@QEAAXXZ */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_ctor
,
4
)
...
...
@@ -482,8 +524,20 @@ collate* __thiscall collate_wchar_ctor(collate *this)
return
NULL
;
}
/* ??_F?$collate@G@std@@QAEXXZ */
/* ??_F?$collate@G@std@@QEAAXXZ */
DEFINE_THISCALL_WRAPPER
(
collate_short_ctor
,
4
)
collate
*
__thiscall
collate_short_ctor
(
collate
*
this
)
{
collate
*
ret
=
collate_wchar_ctor
(
this
);
ret
->
facet
.
vtable
=
&
MSVCP_collate_short_vtable
;
return
ret
;
}
/* ?_Getcat@?$collate@_W@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
/* ?_Getcat@?$collate@_W@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
/* ?_Getcat@?$collate@G@std@@SAIPAPBVfacet@locale@2@PBV42@@Z */
/* ?_Getcat@?$collate@G@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z */
MSVCP_size_t
__cdecl
collate_wchar__Getcat
(
const
locale_facet
**
facet
,
const
locale_facet
*
loc
)
{
FIXME
(
"(%p %p) stub
\n
"
,
facet
,
loc
);
...
...
@@ -492,6 +546,8 @@ MSVCP_size_t __cdecl collate_wchar__Getcat(const locale_facet **facet, const loc
/* ?_Init@?$collate@_W@std@@IAEXABV_Locinfo@2@@Z */
/* ?_Init@?$collate@_W@std@@IEAAXAEBV_Locinfo@2@@Z */
/* ?_Init@?$collate@G@std@@IAEXABV_Locinfo@2@@Z */
/* ?_Init@?$collate@G@std@@IEAAXAEBV_Locinfo@2@@Z */
DEFINE_THISCALL_WRAPPER
(
collate_wchar__Init
,
8
)
void
__thiscall
collate_wchar__Init
(
collate
*
this
,
const
_Locinfo
*
locinfo
)
{
...
...
@@ -500,6 +556,8 @@ void __thiscall collate_wchar__Init(collate *this, const _Locinfo *locinfo)
/* ?do_compare@?$collate@_W@std@@MBEHPB_W000@Z */
/* ?do_compare@?$collate@_W@std@@MEBAHPEB_W000@Z */
/* ?do_compare@?$collate@G@std@@MBEHPBG000@Z */
/* ?do_compare@?$collate@G@std@@MEBAHPEBG000@Z */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_do_compare
,
20
)
int
__thiscall
collate_wchar_do_compare
(
const
collate
*
this
,
const
wchar_t
*
first1
,
const
wchar_t
*
last1
,
const
wchar_t
*
first2
,
const
wchar_t
*
last2
)
...
...
@@ -510,6 +568,8 @@ int __thiscall collate_wchar_do_compare(const collate *this, const wchar_t *firs
/* ?compare@?$collate@_W@std@@QBEHPB_W000@Z */
/* ?compare@?$collate@_W@std@@QEBAHPEB_W000@Z */
/* ?compare@?$collate@G@std@@QBEHPBG000@Z */
/* ?compare@?$collate@G@std@@QEBAHPEBG000@Z */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_compare
,
20
)
int
__thiscall
collate_wchar_compare
(
const
collate
*
this
,
const
wchar_t
*
first1
,
const
wchar_t
*
last1
,
const
wchar_t
*
first2
,
const
wchar_t
*
last2
)
...
...
@@ -520,6 +580,8 @@ int __thiscall collate_wchar_compare(const collate *this, const wchar_t *first1,
/* ?do_hash@?$collate@_W@std@@MBEJPB_W0@Z */
/* ?do_hash@?$collate@_W@std@@MEBAJPEB_W0@Z */
/* ?do_hash@?$collate@G@std@@MBEJPBG0@Z */
/* ?do_hash@?$collate@G@std@@MEBAJPEBG0@Z */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_do_hash
,
12
)
LONG
__thiscall
collate_wchar_do_hash
(
const
collate
*
this
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
...
...
@@ -530,6 +592,8 @@ LONG __thiscall collate_wchar_do_hash(const collate *this,
/* ?hash@?$collate@_W@std@@QBEJPB_W0@Z */
/* ?hash@?$collate@_W@std@@QEBAJPEB_W0@Z */
/* ?hash@?$collate@G@std@@QBEJPBG0@Z */
/* ?hash@?$collate@G@std@@QEBAJPEBG0@Z */
DEFINE_THISCALL_WRAPPER
(
collate_wchar_hash
,
12
)
LONG
__thiscall
collate_wchar_hash
(
const
collate
*
this
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
...
...
@@ -540,6 +604,8 @@ LONG __thiscall collate_wchar_hash(const collate *this,
/* ?do_transform@?$collate@_W@std@@MBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PB_W0@Z */
/* ?do_transform@?$collate@_W@std@@MEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z */
/* ?do_transform@?$collate@G@std@@MBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PBG0@Z */
/* ?do_transform@?$collate@G@std@@MEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PEBG0@Z */
DEFINE_THISCALL_WRAPPER_RETPTR
(
collate_wchar_do_transform
,
12
)
basic_string_wchar
__thiscall
collate_wchar_do_transform
(
const
collate
*
this
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
...
...
@@ -551,6 +617,8 @@ basic_string_wchar __thiscall collate_wchar_do_transform(const collate *this,
/* ?transform@?$collate@_W@std@@QBE?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PB_W0@Z */
/* ?transform@?$collate@_W@std@@QEBA?AV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@2@PEB_W0@Z */
/* ?transform@?$collate@G@std@@QBE?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PBG0@Z */
/* ?transform@?$collate@G@std@@QEBA?AV?$basic_string@GU?$char_traits@G@std@@V?$allocator@G@2@@2@PEBG0@Z */
DEFINE_THISCALL_WRAPPER_RETPTR
(
collate_wchar_transform
,
12
)
basic_string_wchar
__thiscall
collate_wchar_transform
(
const
collate
*
this
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
...
...
@@ -1420,6 +1488,43 @@ const rtti_object_locator collate_wchar_rtti = {
&
collate_wchar_hierarchy
};
static
const
type_info
collate_short_type_info
=
{
&
MSVCP_collate_short_vtable
,
NULL
,
".?AV?$collate@G@std@@"
};
static
const
rtti_base_descriptor
collate_short_rtti_base_descriptor
=
{
&
collate_short_type_info
,
1
,
{
0
,
-
1
,
0
},
64
};
static
const
rtti_base_array
collate_short_rtti_base_array
=
{
{
&
collate_short_rtti_base_descriptor
,
&
locale_facet_rtti_base_descriptor
,
NULL
,
NULL
}
};
static
const
rtti_object_hierarchy
collate_short_hierarchy
=
{
0
,
0
,
2
,
&
collate_short_rtti_base_array
};
const
rtti_object_locator
collate_short_rtti
=
{
0
,
0
,
0
,
&
collate_short_type_info
,
&
collate_short_hierarchy
};
#ifndef __GNUC__
void
__asm_dummy_vtables
(
void
)
{
#endif
...
...
@@ -1431,6 +1536,10 @@ void __asm_dummy_vtables(void) {
VTABLE_ADD_FUNC
(
collate_wchar_do_compare
)
VTABLE_ADD_FUNC
(
collate_wchar_do_transform
)
VTABLE_ADD_FUNC
(
collate_wchar_do_hash
));
__ASM_VTABLE
(
collate_short
,
VTABLE_ADD_FUNC
(
collate_wchar_do_compare
)
VTABLE_ADD_FUNC
(
collate_wchar_do_transform
)
VTABLE_ADD_FUNC
(
collate_wchar_do_hash
));
#ifndef __GNUC__
}
#endif
dlls/msvcp90/msvcp90.spec
View file @
59b2639e
This diff is collapsed.
Click to expand it.
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