mirror of
https://github.com/tnodir/fort
synced 2024-11-15 05:18:07 +00:00
Fix last commit.
This commit is contained in:
parent
a7138869a7
commit
f9ec032233
@ -87,7 +87,7 @@ static bool extractAppInfo(const QString &appPath, AppInfo &appInfo)
|
||||
// Product Version
|
||||
{
|
||||
VS_FIXEDFILEINFO *ffi;
|
||||
if (!VerQueryValueA(infoData, "\\", (LPVOID *) &ffi, (PUINT) dummy))
|
||||
if (!VerQueryValueA(infoData, "\\", (LPVOID *) &ffi, (PUINT) &dummy))
|
||||
return false;
|
||||
|
||||
const DWORD leftMost = HIWORD(ffi->dwProductVersionMS);
|
||||
@ -107,7 +107,7 @@ static bool extractAppInfo(const QString &appPath, AppInfo &appInfo)
|
||||
// Language info
|
||||
WORD *langInfo;
|
||||
if (!VerQueryValueA(infoData, "\\VarFileInfo\\Translation",
|
||||
(LPVOID *) &langInfo, (PUINT) dummy))
|
||||
(LPVOID *) &langInfo, (PUINT) &dummy))
|
||||
return false;
|
||||
|
||||
// Texts
|
||||
|
Loading…
Reference in New Issue
Block a user