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
ad8fbeda
Commit
ad8fbeda
authored
Feb 21, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4690d5f0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/version/Makefile.in
+0
-1
version.c
dlls/version/version.c
+3
-3
No files found.
dlls/version/Makefile.in
View file @
ad8fbeda
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
version.dll
IMPORTLIB
=
version
IMPORTS
=
kernelbase
...
...
dlls/version/version.c
View file @
ad8fbeda
...
...
@@ -72,7 +72,7 @@ _fetch_versioninfo(LPSTR fn,VS_FIXEDFILEINFO **vffi) {
if
((
*
vffi
)
->
dwSignature
==
0x004f0049
)
/* hack to detect unicode */
*
vffi
=
(
VS_FIXEDFILEINFO
*
)(
buf
+
0x28
);
if
((
*
vffi
)
->
dwSignature
!=
VS_FFI_SIGNATURE
)
WARN
(
"Bad VS_FIXEDFILEINFO signature 0x%08x
\n
"
,(
*
vffi
)
->
dwSignature
);
WARN
(
"Bad VS_FIXEDFILEINFO signature 0x%08
l
x
\n
"
,(
*
vffi
)
->
dwSignature
);
return
buf
;
}
}
...
...
@@ -106,7 +106,7 @@ DWORD WINAPI VerInstallFileA(
LPBYTE
buf1
,
buf2
;
OFSTRUCT
ofs
;
TRACE
(
"(%x,%s,%s,%s,%s,%s,%p,%d)
\n
"
,
TRACE
(
"(%
l
x,%s,%s,%s,%s,%s,%p,%d)
\n
"
,
flags
,
debugstr_a
(
srcfilename
),
debugstr_a
(
destfilename
),
debugstr_a
(
srcdir
),
debugstr_a
(
destdir
),
debugstr_a
(
curdir
),
tmpfile
,
*
tmpfilelen
);
...
...
@@ -174,7 +174,7 @@ DWORD WINAPI VerInstallFileA(
xret
=
VIF_OUTOFMEMORY
;
break
;
default:
/* unknown error, should not happen */
FIXME
(
"Unknown LZCopy error %d, ignoring.
\n
"
,
ret
);
FIXME
(
"Unknown LZCopy error %
l
d, ignoring.
\n
"
,
ret
);
xret
=
0
;
break
;
}
...
...
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