Skip to content
Snippets Groups Projects
Commit c5d30535 authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard
Browse files

Stub for VerifyVersionInfoW.

parent 6b27977a
No related branches found
No related tags found
No related merge requests found
......@@ -968,6 +968,7 @@ debug_channels (comm console debugstr dll int resource stress thunk toolhelp
@ stdcall GetCalendarInfoW(long long long ptr long ptr) GetCalendarInfoW
@ stdcall SetCalendarInfoA(long long long str) SetCalendarInfoA
@ stdcall SetCalendarInfoW(long long long wstr) SetCalendarInfoW
@ stdcall VerifyVersionInfoW(long long long long)VerifyVersionInfoW
# XP extensions
@ stdcall DebugActiveProcessStop(long) DebugActiveProcessStop
......
......@@ -512,6 +512,18 @@ BOOL WINAPI GetVersionExW(OSVERSIONINFOW *v)
}
/******************************************************************************
* VerifyVersionInfoW (KERNEL32.@)
*/
BOOL WINAPI VerifyVersionInfoW( /* LPOSVERSIONINFOEXW */ LPVOID lpVersionInfo, DWORD dwTypeMask,
DWORDLONG dwlConditionMask)
{
FIXME("%p %lu %llx\n", lpVersionInfo, dwTypeMask, dwlConditionMask);
return TRUE;
}
/***********************************************************************
* GetWinFlags (KERNEL.132)
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment