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
94dda469
Commit
94dda469
authored
Aug 07, 2018
by
Guillaume Charifi
Committed by
Alexandre Julliard
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub for GetDynamicTimeZoneInformationEffectiveYears().
Signed-off-by:
Guillaume Charifi
<
guillaume.charifi@sfr.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7def0f20
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
3 deletions
+13
-3
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
api-ms-win-core-timezone-l1-1-0.spec
...core-timezone-l1-1-0/api-ms-win-core-timezone-l1-1-0.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
time.c
dlls/kernel32/time.c
+9
-0
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
No files found.
dlls/advapi32/advapi32.spec
View file @
94dda469
...
...
@@ -318,7 +318,7 @@
@ stdcall GetAuditedPermissionsFromAclW(ptr ptr ptr ptr)
@ stdcall GetCurrentHwProfileA(ptr)
@ stdcall GetCurrentHwProfileW(ptr)
# @ stub
GetDynamicTimeZoneInformationEffectiveYears
@ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr) kernel32.
GetDynamicTimeZoneInformationEffectiveYears
@ stdcall GetEffectiveRightsFromAclA(ptr ptr ptr)
@ stdcall GetEffectiveRightsFromAclW(ptr ptr ptr)
# @ stub GetEncryptedFileMetadata
...
...
dlls/api-ms-win-core-timezone-l1-1-0/api-ms-win-core-timezone-l1-1-0.spec
View file @
94dda469
@ stub EnumDynamicTimeZoneInformation
@ stdcall FileTimeToSystemTime(ptr ptr) kernel32.FileTimeToSystemTime
@ stdcall GetDynamicTimeZoneInformation(ptr) kernel32.GetDynamicTimeZoneInformation
@ st
ub
GetDynamicTimeZoneInformationEffectiveYears
@ st
dcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr) kernel32.
GetDynamicTimeZoneInformationEffectiveYears
@ stdcall GetTimeZoneInformation(ptr) kernel32.GetTimeZoneInformation
@ stdcall GetTimeZoneInformationForYear(long ptr ptr) kernel32.GetTimeZoneInformationForYear
@ stub SetDynamicTimeZoneInformation
...
...
dlls/kernel32/kernel32.spec
View file @
94dda469
...
...
@@ -657,6 +657,7 @@
# @ stub GetDurationFormat
# @ stub GetDurationFormatEx
@ stdcall GetDynamicTimeZoneInformation(ptr)
@ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr)
@ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures()
@ stdcall GetEnvironmentStrings() GetEnvironmentStringsA
@ stdcall GetEnvironmentStringsA()
...
...
dlls/kernel32/time.c
View file @
94dda469
...
...
@@ -1448,6 +1448,15 @@ DWORD WINAPI GetDynamicTimeZoneInformation(DYNAMIC_TIME_ZONE_INFORMATION *tzinfo
}
/***********************************************************************
* GetDynamicTimeZoneInformationEffectiveYears (KERNEL32.@)
*/
DWORD
WINAPI
GetDynamicTimeZoneInformationEffectiveYears
(
DYNAMIC_TIME_ZONE_INFORMATION
*
tzinfo
,
DWORD
*
first_year
,
DWORD
*
last_year
)
{
FIXME
(
"(%p, %p, %p): stub!
\n
"
,
tzinfo
,
first_year
,
last_year
);
return
ERROR_FILE_NOT_FOUND
;
}
/***********************************************************************
* QueryProcessCycleTime (KERNEL32.@)
*/
BOOL
WINAPI
QueryProcessCycleTime
(
HANDLE
process
,
PULONG64
cycle
)
...
...
dlls/kernelbase/kernelbase.spec
View file @
94dda469
...
...
@@ -487,7 +487,7 @@
@ stdcall GetDriveTypeW(wstr) kernel32.GetDriveTypeW
# @ stub GetDurationFormatEx
@ stdcall GetDynamicTimeZoneInformation(ptr) kernel32.GetDynamicTimeZoneInformation
# @ stub
GetDynamicTimeZoneInformationEffectiveYears
@ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr) kernel32.
GetDynamicTimeZoneInformationEffectiveYears
# @ stub GetEffectivePackageStatusForUser
# @ stub GetEightBitStringToUnicodeSizeRoutine
# @ stub GetEightBitStringToUnicodeStringRoutine
...
...
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