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
07b6e6e6
Commit
07b6e6e6
authored
Mar 16, 2001
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 16, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed prototype of GetFileVersionInfoA/W.
parent
a7a006a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
info.c
dlls/version/info.c
+2
-2
winver.h
include/winver.h
+2
-2
No files found.
dlls/version/info.c
View file @
07b6e6e6
...
...
@@ -488,7 +488,7 @@ DWORD WINAPI GetFileVersionInfoSizeW( LPCWSTR filename, LPDWORD handle )
/***********************************************************************
* GetFileVersionInfoA [VERSION.1]
*/
DWORD
WINAPI
GetFileVersionInfoA
(
LPCSTR
filename
,
DWORD
handle
,
BOOL
WINAPI
GetFileVersionInfoA
(
LPCSTR
filename
,
DWORD
handle
,
DWORD
datasize
,
LPVOID
data
)
{
DWORD
len
;
...
...
@@ -527,7 +527,7 @@ DO_CONVERT:
/***********************************************************************
* GetFileVersionInfoW [VERSION.4]
*/
DWORD
WINAPI
GetFileVersionInfoW
(
LPCWSTR
filename
,
DWORD
handle
,
BOOL
WINAPI
GetFileVersionInfoW
(
LPCWSTR
filename
,
DWORD
handle
,
DWORD
datasize
,
LPVOID
data
)
{
DWORD
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
filename
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
...
...
include/winver.h
View file @
07b6e6e6
...
...
@@ -158,8 +158,8 @@ DWORD WINAPI VerQueryValueW(LPVOID,LPCWSTR,LPVOID*,UINT*);
DWORD
WINAPI
GetFileVersionInfoSizeA
(
LPCSTR
,
LPDWORD
);
DWORD
WINAPI
GetFileVersionInfoSizeW
(
LPCWSTR
,
LPDWORD
);
#define GetFileVersionInfoSize WINELIB_NAME_AW(GetFileVersionInfoSize)
DWORD
WINAPI
GetFileVersionInfoA
(
LPCSTR
,
DWORD
,
DWORD
,
LPVOID
);
DWORD
WINAPI
GetFileVersionInfoW
(
LPCWSTR
,
DWORD
,
DWORD
,
LPVOID
);
BOOL
WINAPI
GetFileVersionInfoA
(
LPCSTR
,
DWORD
,
DWORD
,
LPVOID
);
BOOL
WINAPI
GetFileVersionInfoW
(
LPCWSTR
,
DWORD
,
DWORD
,
LPVOID
);
#define GetFileVersionInfo WINELIB_NAME_AW(GetFileVersionInfo)
/* 20 GETFILEVERSIONINFORAW */
...
...
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