dlls/kernel/sync.c stup for VerifyVersionInfoW (move it to a better place if you find one) --- juergen.schmied@debitel.net
Index: wine/dlls/kernel/kernel32.spec =================================================================== RCS file: /home/wine/wine/dlls/kernel/kernel32.spec,v retrieving revision 1.49 diff -d -u -r1.49 kernel32.spec --- wine/dlls/kernel/kernel32.spec 2 Apr 2002 19:37:15 -0000 1.49 +++ wine/dlls/kernel/kernel32.spec 7 May 2002 18:58:04 -0000 @@ -970,6 +970,7 @@ @ 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 @@ -1013,3 +1014,5 @@ # Unix files @ stdcall wine_get_unix_file_name(str ptr long) wine_get_unix_file_name + + Index: wine/dlls/kernel/sync.c =================================================================== RCS file: /home/wine/wine/dlls/kernel/sync.c,v retrieving revision 1.19 diff -d -u -r1.19 sync.c --- wine/dlls/kernel/sync.c 9 Mar 2002 23:33:03 -0000 1.19 +++ wine/dlls/kernel/sync.c 7 May 2002 18:58:05 -0000 @@ -801,3 +801,15 @@ return FALSE; } +/****************************************************************************** + * VerifyVersionInfoW (KERNEL.@) + */ +BOOL WINAPI VerifyVersionInfoW( /* LPOSVERSIONINFOEXW */ LPVOID lpVersionInfo, DWORD dwTypeMask, LONGLONG dwlConditionMask) +{ + FIXME("%p %lu %llx\n", lpVersionInfo, dwTypeMask, dwlConditionMask); + return 1; +} + + + +