Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c5d30535
Commit
c5d30535
authored
May 09, 2002
by
Juergen Schmied
Committed by
Alexandre Julliard
May 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for VerifyVersionInfoW.
parent
6b27977a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
kernel32.spec
dlls/kernel/kernel32.spec
+1
-0
version.c
misc/version.c
+12
-0
No files found.
dlls/kernel/kernel32.spec
View file @
c5d30535
...
...
@@ -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
...
...
misc/version.c
View file @
c5d30535
...
...
@@ -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)
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment