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
58123a2b
Commit
58123a2b
authored
Aug 15, 2018
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Add time_get<char>::do_get_time implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e547d87a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
locale.c
dlls/msvcp90/locale.c
+22
-2
No files found.
dlls/msvcp90/locale.c
View file @
58123a2b
...
...
@@ -10136,8 +10136,28 @@ istreambuf_iterator_char* __thiscall time_get_char_do_get_time(const time_get_ch
istreambuf_iterator_char
*
ret
,
istreambuf_iterator_char
s
,
istreambuf_iterator_char
e
,
ios_base
*
base
,
int
*
err
,
struct
tm
*
t
)
{
FIXME
(
"(%p %p %p %p %p) stub
\n
"
,
this
,
ret
,
base
,
err
,
t
);
return
NULL
;
TRACE
(
"(%p %p %p %p %p)
\n
"
,
this
,
ret
,
base
,
err
,
t
);
*
err
|=
time_get_char__Getint
(
this
,
&
s
,
&
e
,
0
,
23
,
&
t
->
tm_hour
);
if
(
*
err
||
istreambuf_iterator_char_val
(
&
s
)
!=
':'
)
*
err
|=
IOSTATE_failbit
;
if
(
!*
err
)
{
istreambuf_iterator_char_inc
(
&
s
);
*
err
|=
time_get_char__Getint
(
this
,
&
s
,
&
e
,
0
,
59
,
&
t
->
tm_min
);
}
if
(
*
err
||
istreambuf_iterator_char_val
(
&
s
)
!=
':'
)
*
err
|=
IOSTATE_failbit
;
if
(
!*
err
)
{
istreambuf_iterator_char_inc
(
&
s
);
*
err
|=
time_get_char__Getint
(
this
,
&
s
,
&
e
,
0
,
59
,
&
t
->
tm_sec
);
}
*
ret
=
s
;
return
ret
;
}
/* ?get_time@?$time_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$char_traits@D@std@@@2@V32@0AAVios_base@2@AAHPAUtm@@@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