Commit 843390f9 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add a stub for GetDynamicTimeZoneInformation.

parent 275fc471
...@@ -516,6 +516,7 @@ ...@@ -516,6 +516,7 @@
@ stdcall GetDllDirectoryW(long ptr) @ stdcall GetDllDirectoryW(long ptr)
@ stdcall GetDriveTypeA(str) @ stdcall GetDriveTypeA(str)
@ stdcall GetDriveTypeW(wstr) @ stdcall GetDriveTypeW(wstr)
@ stdcall GetDynamicTimeZoneInformation(ptr)
@ stdcall GetEnvironmentStrings() GetEnvironmentStringsA @ stdcall GetEnvironmentStrings() GetEnvironmentStringsA
@ stdcall GetEnvironmentStringsA() @ stdcall GetEnvironmentStringsA()
@ stdcall GetEnvironmentStringsW() @ stdcall GetEnvironmentStringsW()
......
...@@ -1066,3 +1066,13 @@ BOOL WINAPI GetSystemTimes(LPFILETIME lpIdleTime, LPFILETIME lpKernelTime, LPFIL ...@@ -1066,3 +1066,13 @@ BOOL WINAPI GetSystemTimes(LPFILETIME lpIdleTime, LPFILETIME lpKernelTime, LPFIL
return FALSE; return FALSE;
} }
/***********************************************************************
* GetDynamicTimeZoneInformation (KERNEL32.@)
*/
DWORD WINAPI GetDynamicTimeZoneInformation(PDYNAMIC_TIME_ZONE_INFORMATION info)
{
FIXME("(%p) stub!\n", info);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return TIME_ZONE_ID_INVALID;
}
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