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
95142cad
Commit
95142cad
authored
Feb 28, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Partial implementation for GetCalendarInfoEx().
parent
91ee5676
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
api-ms-win-core-localization-l1-2-0.spec
...alization-l1-2-0/api-ms-win-core-localization-l1-2-0.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
time.c
dlls/kernel32/time.c
+12
-0
No files found.
dlls/api-ms-win-core-localization-l1-2-0/api-ms-win-core-localization-l1-2-0.spec
View file @
95142cad
...
...
@@ -9,7 +9,7 @@
@ stdcall GetACP() kernel32.GetACP
@ stdcall GetCPInfo(long ptr) kernel32.GetCPInfo
@ stdcall GetCPInfoExW(long long ptr) kernel32.GetCPInfoExW
@ st
ub
GetCalendarInfoEx
@ st
dcall GetCalendarInfoEx(wstr long ptr long ptr long ptr) kernel32.
GetCalendarInfoEx
@ stdcall GetCalendarInfoW(long long long ptr long ptr) kernel32.GetCalendarInfoW
@ stub GetFileMUIInfo
@ stub GetFileMUIPath
...
...
dlls/kernel32/kernel32.spec
View file @
95142cad
...
...
@@ -442,6 +442,7 @@
@ stdcall GetCPInfoExW(long long ptr)
@ stdcall GetCalendarInfoA(long long long ptr long ptr)
@ stdcall GetCalendarInfoW(long long long ptr long ptr)
@ stdcall GetCalendarInfoEx(wstr long ptr long ptr long ptr)
# @ stub GetComPlusPackageInstallStatus
@ stdcall GetCommConfig(long ptr long)
@ stdcall GetCommMask(long ptr)
...
...
dlls/kernel32/time.c
View file @
95142cad
...
...
@@ -798,6 +798,18 @@ int WINAPI GetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType,
}
/*********************************************************************
* GetCalendarInfoEx (KERNEL32.@)
*/
int
WINAPI
GetCalendarInfoEx
(
LPCWSTR
locale
,
CALID
calendar
,
LPCWSTR
lpReserved
,
CALTYPE
caltype
,
LPWSTR
data
,
int
len
,
DWORD
*
value
)
{
LCID
lcid
=
LocaleNameToLCID
(
locale
,
0
);
FIXME
(
"(%s, %d, %p, 0x%08x, %p, %d, %p): semi-stub
\n
"
,
debugstr_w
(
locale
),
calendar
,
lpReserved
,
caltype
,
data
,
len
,
value
);
return
GetCalendarInfoW
(
lcid
,
calendar
,
caltype
,
data
,
len
,
value
);
}
/*********************************************************************
* SetCalendarInfoA (KERNEL32.@)
*
*/
...
...
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