kernel32: Add stub for GetDynamicTimeZoneInformationEffectiveYears().
Signed-off-by: Guillaume Charifi <guillaume.charifi@sfr.fr> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7def0f200f
commit
94dda4690b
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
@ stub EnumDynamicTimeZoneInformation
|
||||
@ stdcall FileTimeToSystemTime(ptr ptr) kernel32.FileTimeToSystemTime
|
||||
@ stdcall GetDynamicTimeZoneInformation(ptr) kernel32.GetDynamicTimeZoneInformation
|
||||
@ stub GetDynamicTimeZoneInformationEffectiveYears
|
||||
@ stdcall GetDynamicTimeZoneInformationEffectiveYears(ptr ptr ptr) kernel32.GetDynamicTimeZoneInformationEffectiveYears
|
||||
@ stdcall GetTimeZoneInformation(ptr) kernel32.GetTimeZoneInformation
|
||||
@ stdcall GetTimeZoneInformationForYear(long ptr ptr) kernel32.GetTimeZoneInformationForYear
|
||||
@ stub SetDynamicTimeZoneInformation
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -1447,6 +1447,15 @@ DWORD WINAPI GetDynamicTimeZoneInformation(DYNAMIC_TIME_ZONE_INFORMATION *tzinfo
|
|||
return TIME_ZoneID( (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.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue