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
cf63513a
Commit
cf63513a
authored
Feb 04, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regsvr32: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1e5ffcbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
programs/regsvr32/Makefile.in
+0
-1
regsvr32.c
programs/regsvr32/regsvr32.c
+3
-3
No files found.
programs/regsvr32/Makefile.in
View file @
cf63513a
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
regsvr32.exe
IMPORTS
=
ole32 user32 kernelbase
...
...
programs/regsvr32/regsvr32.c
View file @
cf63513a
...
...
@@ -47,7 +47,7 @@ static void WINAPIV output_write(UINT id, ...)
if
(
!
LoadStringW
(
GetModuleHandleW
(
NULL
),
id
,
fmt
,
ARRAY_SIZE
(
fmt
)))
{
WINE_FIXME
(
"LoadString failed with %d
\n
"
,
GetLastError
());
WINE_FIXME
(
"LoadString failed with %
l
d
\n
"
,
GetLastError
());
return
;
}
...
...
@@ -57,7 +57,7 @@ static void WINAPIV output_write(UINT id, ...)
va_end
(
va_args
);
if
(
len
==
0
&&
GetLastError
()
!=
ERROR_NO_WORK_DONE
)
{
WINE_FIXME
(
"Could not format string: le=%u, fmt=%s
\n
"
,
GetLastError
(),
wine_dbgstr_w
(
fmt
));
WINE_FIXME
(
"Could not format string: le=%
l
u, fmt=%s
\n
"
,
GetLastError
(),
wine_dbgstr_w
(
fmt
));
return
;
}
...
...
@@ -153,7 +153,7 @@ static void reexec_self( WORD machine )
}
else
{
WINE_TRACE
(
"failed to restart, err=%d
\n
"
,
GetLastError
());
WINE_TRACE
(
"failed to restart, err=%
l
d
\n
"
,
GetLastError
());
}
Wow64RevertWow64FsRedirection
(
cookie
);
HeapFree
(
GetProcessHeap
(),
0
,
cmdline
);
...
...
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