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
9730744b
Commit
9730744b
authored
Sep 14, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp80: Added codecvt<wchar>::_Getcat implementation.
parent
fbd77651
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
4 deletions
+24
-4
msvcp80.c
dlls/msvcp80/msvcp80.c
+20
-0
msvcp80.spec
dlls/msvcp80/msvcp80.spec
+4
-4
No files found.
dlls/msvcp80/msvcp80.c
View file @
9730744b
...
...
@@ -96,6 +96,8 @@ MSVCP_size_t (CDECL *pctype_char__Getcat)(const struct locale_facet**,const stru
MSVCP_size_t
(
CDECL
*
pctype_wchar__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
MSVCP_size_t
(
CDECL
*
pctype_short__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
MSVCP_size_t
(
CDECL
*
pcodecvt_char__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
MSVCP_size_t
(
CDECL
*
pcodecvt_wchar__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
MSVCP_size_t
(
CDECL
*
pcodecvt_short__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
MSVCP_size_t
(
CDECL
*
pnumpunct_char__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
MSVCP_size_t
(
CDECL
*
pnumpunct_wchar__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
MSVCP_size_t
(
CDECL
*
pnumpunct_short__Getcat
)(
const
struct
locale_facet
**
,
const
struct
locale
*
);
...
...
@@ -115,6 +117,8 @@ static BOOL init_funcs(void)
pctype_wchar__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$ctype@_W@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
pctype_short__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$ctype@G@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
pcodecvt_char__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$codecvt@DDH@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
pcodecvt_wchar__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$codecvt@_WDH@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
pcodecvt_short__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$codecvt@GDH@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
pnumpunct_char__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$numpunct@D@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
pnumpunct_wchar__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$numpunct@_W@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
pnumpunct_short__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$numpunct@G@std@@SA_KPEAPEBVfacet@locale@2@PEBV42@@Z"
);
...
...
@@ -127,6 +131,8 @@ static BOOL init_funcs(void)
pctype_wchar__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$ctype@_W@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
pctype_short__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$ctype@G@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
pcodecvt_char__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$codecvt@DDH@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
pcodecvt_wchar__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$codecvt@_WDH@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
pcodecvt_short__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$codecvt@GDH@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
pnumpunct_char__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
pnumpunct_wchar__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$numpunct@_W@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
pnumpunct_short__Getcat
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_Getcat@?$numpunct@G@std@@SAIPAPBVfacet@locale@2@PBV42@@Z"
);
...
...
@@ -199,6 +205,20 @@ MSVCP_size_t __cdecl codecvt_char__Getcat(const struct locale_facet **facet)
return
pcodecvt_char__Getcat
(
facet
,
plocale_classic
());
}
/* ?_Getcat@?$codecvt@_WDH@std@@SAIPAPBVfacet@locale@2@@Z */
/* ?_Getcat@?$codecvt@_WDH@std@@SA_KPEAPEBVfacet@locale@2@@Z */
MSVCP_size_t
__cdecl
codecvt_wchar__Getcat
(
const
struct
locale_facet
**
facet
)
{
return
pcodecvt_wchar__Getcat
(
facet
,
plocale_classic
());
}
/* ?_Getcat@?$codecvt@GDH@std@@SAIPAPBVfacet@locale@2@@Z */
/* ?_Getcat@?$codecvt@GDH@std@@SA_KPEAPEBVfacet@locale@2@@Z */
MSVCP_size_t
__cdecl
codecvt_short__Getcat
(
const
struct
locale_facet
**
facet
)
{
return
pcodecvt_short__Getcat
(
facet
,
plocale_classic
());
}
/* ?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@@Z */
/* ?_Getcat@?$numpunct@D@std@@SA_KPEAPEBVfacet@locale@2@@Z */
MSVCP_size_t
__cdecl
numpunct_char__Getcat
(
const
struct
locale_facet
**
facet
)
...
...
dlls/msvcp80/msvcp80.spec
View file @
9730744b
...
...
@@ -2220,10 +2220,10 @@
@ cdecl -arch=win64 ?_Fpz_func@std@@YAAEA_JXZ() msvcp90.?_Fpz_func@std@@YAAEA_JXZ
@ cdecl -arch=win32 ?_Getcat@?$codecvt@DDH@std@@SAIPAPBVfacet@locale@2@@Z(ptr) codecvt_char__Getcat
@ cdecl -arch=win64 ?_Getcat@?$codecvt@DDH@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) codecvt_char__Getcat
@
stub -arch=win32 ?_Getcat@?$codecvt@GDH@std@@SAIPAPBVfacet@locale@2@@Z
@
stub -arch=win64 ?_Getcat@?$codecvt@GDH@std@@SA_KPEAPEBVfacet@locale@2@@Z
@
stub -arch=win32 ?_Getcat@?$codecvt@_WDH@std@@SAIPAPBVfacet@locale@2@@Z
@
stub -arch=win64 ?_Getcat@?$codecvt@_WDH@std@@SA_KPEAPEBVfacet@locale@2@@Z
@
cdecl -arch=win32 ?_Getcat@?$codecvt@GDH@std@@SAIPAPBVfacet@locale@2@@Z(ptr) codecvt_short__Getcat
@
cdecl -arch=win64 ?_Getcat@?$codecvt@GDH@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) codecvt_short__Getcat
@
cdecl -arch=win32 ?_Getcat@?$codecvt@_WDH@std@@SAIPAPBVfacet@locale@2@@Z(ptr) codecvt_wchar__Getcat
@
cdecl -arch=win64 ?_Getcat@?$codecvt@_WDH@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) codecvt_wchar__Getcat
@ cdecl -arch=win32 ?_Getcat@?$collate@D@std@@SAIPAPBVfacet@locale@2@@Z(ptr) collate_char__Getcat
@ cdecl -arch=win64 ?_Getcat@?$collate@D@std@@SA_KPEAPEBVfacet@locale@2@@Z(ptr) collate_char__Getcat
@ cdecl -arch=win32 ?_Getcat@?$collate@G@std@@SAIPAPBVfacet@locale@2@@Z(ptr) collate_short__Getcat
...
...
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