Stub for VerifyVersionInfoW.

This commit is contained in:
Juergen Schmied 2002-05-09 19:36:28 +00:00 committed by Alexandre Julliard
parent 6b27977ab5
commit c5d30535fb
2 changed files with 13 additions and 0 deletions

View File

@ -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

View File

@ -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)
*/