Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
61fc9ac9
Commit
61fc9ac9
authored
Dec 22, 2014
by
Austin English
Committed by
Alexandre Julliard
Dec 23, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version: Add stubs for GetFileVersionInfoExA/W.
parent
0029290e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
api-ms-win-downlevel-version-l1-1-0.spec
...l-version-l1-1-0/api-ms-win-downlevel-version-l1-1-0.spec
+1
-1
version.c
dlls/version/version.c
+20
-0
version.spec
dlls/version/version.spec
+3
-1
No files found.
dlls/api-ms-win-downlevel-version-l1-1-0/api-ms-win-downlevel-version-l1-1-0.spec
View file @
61fc9ac9
@ st
ub
GetFileVersionInfoExW
@ st
dcall GetFileVersionInfoExW(long wstr long long ptr) version.
GetFileVersionInfoExW
@ stdcall GetFileVersionInfoSizeExW(long wstr ptr) version.GetFileVersionInfoSizeExW
@ stdcall VerFindFileA(long str str str ptr ptr ptr ptr) version.VerFindFileA
@ stdcall VerFindFileW(long wstr wstr wstr ptr ptr ptr ptr) version.VerFindFileW
...
...
dlls/version/version.c
View file @
61fc9ac9
...
...
@@ -1633,3 +1633,23 @@ DWORD WINAPI GetFileVersionInfoSizeExW(DWORD flags, LPCWSTR filename, LPDWORD ha
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/******************************************************************************
* GetFileVersionInfoExA [VERSION.@]
*/
BOOL
WINAPI
GetFileVersionInfoExA
(
DWORD
flags
,
LPCSTR
filename
,
DWORD
handle
,
DWORD
len
,
LPVOID
data
)
{
FIXME
(
"stub: %u %s %u %u %p
\n
"
,
flags
,
wine_dbgstr_a
(
filename
),
handle
,
len
,
data
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/******************************************************************************
* GetFileVersionInfoExW [VERSION.@]
*/
BOOL
WINAPI
GetFileVersionInfoExW
(
DWORD
flags
,
LPCWSTR
filename
,
DWORD
handle
,
DWORD
len
,
LPVOID
data
)
{
FIXME
(
"stub: %u %s %u %u %p
\n
"
,
flags
,
wine_dbgstr_w
(
filename
),
handle
,
len
,
data
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
dlls/version/version.spec
View file @
61fc9ac9
@ stdcall GetFileVersionInfoA(str long long ptr)
@ stdcall GetFileVersionInfoExA(long str long long ptr)
@ stdcall GetFileVersionInfoExW(long wstr long long ptr)
@ stdcall GetFileVersionInfoSizeA(str ptr)
@ stdcall GetFileVersionInfoSizeW(wstr ptr)
@ stdcall GetFileVersionInfoSizeExA(long str ptr)
@ stdcall GetFileVersionInfoSizeExW(long wstr ptr)
@ stdcall GetFileVersionInfoSizeW(wstr ptr)
@ stdcall GetFileVersionInfoW(wstr long long ptr)
@ stdcall VerFindFileA(long str str str ptr ptr ptr ptr)
@ stdcall VerFindFileW(long wstr wstr wstr ptr ptr ptr ptr)
...
...
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