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
b433f1cd
Commit
b433f1cd
authored
Dec 22, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added ctype<wchar_t>::scan functions implementation.
parent
1de0fe3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
8 deletions
+20
-8
locale.c
dlls/msvcp90/locale.c
+20
-8
No files found.
dlls/msvcp90/locale.c
View file @
b433f1cd
...
...
@@ -2339,11 +2339,17 @@ const wchar_t* __thiscall ctype_wchar_is(const ctype_wchar *this,
/* ?do_scan_is@?$ctype@G@std@@MBEPBGFPBG0@Z */
/* ?do_scan_is@?$ctype@G@std@@MEBAPEBGFPEBG0@Z */
DEFINE_THISCALL_WRAPPER
(
ctype_wchar_do_scan_is
,
16
)
#define call_ctype_wchar_do_scan_is(this, mask, first, last) CALL_VTBL_FUNC(this, 12, \
const wchar_t*, (const ctype_wchar*, short, const wchar_t*, const wchar_t*), \
(this, mask, first, last))
const
wchar_t
*
__thiscall
ctype_wchar_do_scan_is
(
const
ctype_wchar
*
this
,
short
mask
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
{
FIXME
(
"(%p %d %p %p) stub
\n
"
,
this
,
mask
,
first
,
last
);
return
NULL
;
TRACE
(
"(%p %d %p %p)
\n
"
,
this
,
mask
,
first
,
last
);
for
(;
first
<
last
;
first
++
)
if
(
!
ctype_wchar_is_ch
(
this
,
mask
,
*
first
))
break
;
return
first
;
}
/* ?scan_is@?$ctype@_W@std@@QBEPB_WFPB_W0@Z */
...
...
@@ -2354,8 +2360,8 @@ DEFINE_THISCALL_WRAPPER(ctype_wchar_scan_is, 16)
const
wchar_t
*
__thiscall
ctype_wchar_scan_is
(
const
ctype_wchar
*
this
,
short
mask
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
{
FIXME
(
"(%p %x %p %p) stub
\n
"
,
this
,
mask
,
first
,
last
);
return
NULL
;
TRACE
(
"(%p %x %p %p)
\n
"
,
this
,
mask
,
first
,
last
);
return
call_ctype_wchar_do_scan_is
(
this
,
mask
,
first
,
last
)
;
}
/* ?do_scan_not@?$ctype@_W@std@@MBEPB_WFPB_W0@Z */
...
...
@@ -2363,11 +2369,17 @@ const wchar_t* __thiscall ctype_wchar_scan_is(const ctype_wchar *this,
/* ?do_scan_not@?$ctype@G@std@@MBEPBGFPBG0@Z */
/* ?do_scan_not@?$ctype@G@std@@MEBAPEBGFPEBG0@Z */
DEFINE_THISCALL_WRAPPER
(
ctype_wchar_do_scan_not
,
16
)
#define call_ctype_wchar_do_scan_not(this, mask, first, last) CALL_VTBL_FUNC(this, 16, \
const wchar_t*, (const ctype_wchar*, short, const wchar_t*, const wchar_t*), \
(this, mask, first, last))
const
wchar_t
*
__thiscall
ctype_wchar_do_scan_not
(
const
ctype_wchar
*
this
,
short
mask
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
{
FIXME
(
"(%p %x %p %p) stub
\n
"
,
this
,
mask
,
first
,
last
);
return
NULL
;
TRACE
(
"(%p %x %p %p)
\n
"
,
this
,
mask
,
first
,
last
);
for
(;
first
<
last
;
first
++
)
if
(
ctype_wchar_is_ch
(
this
,
mask
,
*
first
))
break
;
return
first
;
}
/* ?scan_not@?$ctype@_W@std@@QBEPB_WFPB_W0@Z */
...
...
@@ -2378,8 +2390,8 @@ DEFINE_THISCALL_WRAPPER(ctype_wchar_scan_not, 16)
const
wchar_t
*
__thiscall
ctype_wchar_scan_not
(
const
ctype_wchar
*
this
,
short
mask
,
const
wchar_t
*
first
,
const
wchar_t
*
last
)
{
FIXME
(
"(%p %x %p %p) stub
\n
"
,
this
,
mask
,
first
,
last
);
return
NULL
;
TRACE
(
"(%p %x %p %p)
\n
"
,
this
,
mask
,
first
,
last
);
return
call_ctype_wchar_do_scan_not
(
this
,
mask
,
first
,
last
)
;
}
/* ??0_Locimp@locale@std@@AAE@_N@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