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
1e5ffcbf
Commit
1e5ffcbf
authored
Feb 04, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reg: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f158558d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
programs/reg/Makefile.in
+0
-1
import.c
programs/reg/import.c
+1
-1
reg.c
programs/reg/reg.c
+2
-2
No files found.
programs/reg/Makefile.in
View file @
1e5ffcbf
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
reg.exe
IMPORTS
=
advapi32
DELAYIMPORTS
=
user32
...
...
programs/reg/import.c
View file @
1e5ffcbf
...
...
@@ -838,7 +838,7 @@ invalid:
/* handler for parser UNKNOWN_DATA state */
static
WCHAR
*
unknown_data_state
(
struct
parser
*
parser
,
WCHAR
*
pos
)
{
FIXME
(
"Unknown registry data type [0x%x]
\n
"
,
parser
->
data_type
);
FIXME
(
"Unknown registry data type [0x%
l
x]
\n
"
,
parser
->
data_type
);
set_state
(
parser
,
LINE_START
);
return
pos
;
...
...
programs/reg/reg.c
View file @
1e5ffcbf
...
...
@@ -81,7 +81,7 @@ static void output_formatstring(const WCHAR *fmt, va_list va_args)
fmt
,
0
,
0
,
(
WCHAR
*
)
&
str
,
0
,
&
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
;
}
output_writeconsole
(
str
,
len
);
...
...
@@ -96,7 +96,7 @@ void WINAPIV output_message(unsigned int id, ...)
if
(
!
(
len
=
LoadStringW
(
GetModuleHandleW
(
NULL
),
id
,
(
WCHAR
*
)
&
fmt
,
0
)))
{
WINE_FIXME
(
"LoadString failed with %d
\n
"
,
GetLastError
());
WINE_FIXME
(
"LoadString failed with %
l
d
\n
"
,
GetLastError
());
return
;
}
...
...
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