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
ded7efd2
Commit
ded7efd2
authored
Apr 19, 2019
by
Vijay Kiran Kamuju
Committed by
Alexandre Julliard
Apr 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add implementation of CAL_SSHORTESTDAYNAME*.
Signed-off-by:
Vijay Kiran Kamuju
<
infyquest@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b2433315
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
time.c
dlls/kernel32/time.c
+13
-0
No files found.
dlls/kernel32/time.c
View file @
ded7efd2
...
...
@@ -1068,6 +1068,13 @@ int WINAPI GetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType,
case
CAL_SABBREVMONTHNAME12
:
case
CAL_SABBREVMONTHNAME13
:
case
CAL_SYEARMONTH
:
case
CAL_SSHORTESTDAYNAME1
:
case
CAL_SSHORTESTDAYNAME2
:
case
CAL_SSHORTESTDAYNAME3
:
case
CAL_SSHORTESTDAYNAME4
:
case
CAL_SSHORTESTDAYNAME5
:
case
CAL_SSHORTESTDAYNAME6
:
case
CAL_SSHORTESTDAYNAME7
:
return
GetLocaleInfoW
(
Locale
,
caltype_lctype_map
[
calinfo
]
|
localeflags
,
lpCalData
,
cchData
);
case
CAL_ITWODIGITYEARMAX
:
if
(
CalType
&
CAL_RETURN_NUMBER
)
...
...
@@ -1090,6 +1097,12 @@ int WINAPI GetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType,
return
0
;
}
break
;
case
CAL_SMONTHDAY
:
FIXME
(
"Unimplemented caltype %d
\n
"
,
calinfo
);
return
0
;
case
CAL_SABBREVERASTRING
:
FIXME
(
"Unimplemented caltype %d
\n
"
,
calinfo
);
return
0
;
default:
FIXME
(
"Unknown caltype %d
\n
"
,
calinfo
);
SetLastError
(
ERROR_INVALID_FLAGS
);
...
...
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