Commit 94dda469 authored by Guillaume Charifi's avatar Guillaume Charifi Committed by Alexandre Julliard

kernel32: Add stub for GetDynamicTimeZoneInformationEffectiveYears().

parent 7def0f20
...@@ -318,7 +318,7 @@ ...@@ -318,7 +318,7 @@
@ stdcall GetAuditedPermissionsFromAclW(ptr ptr ptr ptr) @ stdcall GetAuditedPermissionsFromAclW(ptr ptr ptr ptr)
@ stdcall GetCurrentHwProfileA(ptr) @ stdcall GetCurrentHwProfileA(ptr)
@ stdcall GetCurrentHwProfileW(ptr) @ stdcall GetCurrentHwProfileW(ptr)
# @ stub GetDynamicTimeZoneInformationEffectiveYears @ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr) kernel32.GetDynamicTimeZoneInformationEffectiveYears
@ stdcall GetEffectiveRightsFromAclA(ptr ptr ptr) @ stdcall GetEffectiveRightsFromAclA(ptr ptr ptr)
@ stdcall GetEffectiveRightsFromAclW(ptr ptr ptr) @ stdcall GetEffectiveRightsFromAclW(ptr ptr ptr)
# @ stub GetEncryptedFileMetadata # @ stub GetEncryptedFileMetadata
......
@ stub EnumDynamicTimeZoneInformation @ stub EnumDynamicTimeZoneInformation
@ stdcall FileTimeToSystemTime(ptr ptr) kernel32.FileTimeToSystemTime @ stdcall FileTimeToSystemTime(ptr ptr) kernel32.FileTimeToSystemTime
@ stdcall GetDynamicTimeZoneInformation(ptr) kernel32.GetDynamicTimeZoneInformation @ stdcall GetDynamicTimeZoneInformation(ptr) kernel32.GetDynamicTimeZoneInformation
@ stub GetDynamicTimeZoneInformationEffectiveYears @ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr) kernel32.GetDynamicTimeZoneInformationEffectiveYears
@ stdcall GetTimeZoneInformation(ptr) kernel32.GetTimeZoneInformation @ stdcall GetTimeZoneInformation(ptr) kernel32.GetTimeZoneInformation
@ stdcall GetTimeZoneInformationForYear(long ptr ptr) kernel32.GetTimeZoneInformationForYear @ stdcall GetTimeZoneInformationForYear(long ptr ptr) kernel32.GetTimeZoneInformationForYear
@ stub SetDynamicTimeZoneInformation @ stub SetDynamicTimeZoneInformation
......
...@@ -657,6 +657,7 @@ ...@@ -657,6 +657,7 @@
# @ stub GetDurationFormat # @ stub GetDurationFormat
# @ stub GetDurationFormatEx # @ stub GetDurationFormatEx
@ stdcall GetDynamicTimeZoneInformation(ptr) @ stdcall GetDynamicTimeZoneInformation(ptr)
@ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr)
@ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures() @ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures()
@ stdcall GetEnvironmentStrings() GetEnvironmentStringsA @ stdcall GetEnvironmentStrings() GetEnvironmentStringsA
@ stdcall GetEnvironmentStringsA() @ stdcall GetEnvironmentStringsA()
......
...@@ -1448,6 +1448,15 @@ DWORD WINAPI GetDynamicTimeZoneInformation(DYNAMIC_TIME_ZONE_INFORMATION *tzinfo ...@@ -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.@) * QueryProcessCycleTime (KERNEL32.@)
*/ */
BOOL WINAPI QueryProcessCycleTime(HANDLE process, PULONG64 cycle) BOOL WINAPI QueryProcessCycleTime(HANDLE process, PULONG64 cycle)
......
...@@ -487,7 +487,7 @@ ...@@ -487,7 +487,7 @@
@ stdcall GetDriveTypeW(wstr) kernel32.GetDriveTypeW @ stdcall GetDriveTypeW(wstr) kernel32.GetDriveTypeW
# @ stub GetDurationFormatEx # @ stub GetDurationFormatEx
@ stdcall GetDynamicTimeZoneInformation(ptr) kernel32.GetDynamicTimeZoneInformation @ stdcall GetDynamicTimeZoneInformation(ptr) kernel32.GetDynamicTimeZoneInformation
# @ stub GetDynamicTimeZoneInformationEffectiveYears @ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr) kernel32.GetDynamicTimeZoneInformationEffectiveYears
# @ stub GetEffectivePackageStatusForUser # @ stub GetEffectivePackageStatusForUser
# @ stub GetEightBitStringToUnicodeSizeRoutine # @ stub GetEightBitStringToUnicodeSizeRoutine
# @ stub GetEightBitStringToUnicodeStringRoutine # @ stub GetEightBitStringToUnicodeStringRoutine
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment