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
6a213b1c
Commit
6a213b1c
authored
Feb 16, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
newdev: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
228579ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/newdev/Makefile.in
+0
-1
main.c
dlls/newdev/main.c
+4
-4
No files found.
dlls/newdev/Makefile.in
View file @
6a213b1c
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
newdev.dll
IMPORTLIB
=
newdev
IMPORTS
=
setupapi
...
...
dlls/newdev/main.c
View file @
6a213b1c
...
...
@@ -101,11 +101,11 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND parent, const WCHAR *hardwar
DIF_NEWDEVICEWIZARD_FINISHINSTALL
,
};
TRACE
(
"parent %p, hardware_id %s, inf_path %s, flags %#x, reboot %p.
\n
"
,
TRACE
(
"parent %p, hardware_id %s, inf_path %s, flags %#
l
x, reboot %p.
\n
"
,
parent
,
debugstr_w
(
hardware_id
),
debugstr_w
(
inf_path
),
flags
,
reboot
);
if
(
flags
)
FIXME
(
"Unhandled flags %#x.
\n
"
,
flags
);
FIXME
(
"Unhandled flags %#
l
x.
\n
"
,
flags
);
if
(
reboot
)
*
reboot
=
FALSE
;
...
...
@@ -154,7 +154,7 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND parent, const WCHAR *hardwar
*/
BOOL
WINAPI
DiInstallDriverA
(
HWND
parent
,
const
char
*
inf_path
,
DWORD
flags
,
BOOL
*
reboot
)
{
FIXME
(
"parent %p, inf_path %s, flags %#x, reboot %p, stub!
\n
"
,
parent
,
debugstr_a
(
inf_path
),
flags
,
reboot
);
FIXME
(
"parent %p, inf_path %s, flags %#
l
x, reboot %p, stub!
\n
"
,
parent
,
debugstr_a
(
inf_path
),
flags
,
reboot
);
return
TRUE
;
}
...
...
@@ -163,6 +163,6 @@ BOOL WINAPI DiInstallDriverA(HWND parent, const char *inf_path, DWORD flags, BOO
*/
BOOL
WINAPI
DiInstallDriverW
(
HWND
parent
,
const
WCHAR
*
inf_path
,
DWORD
flags
,
BOOL
*
reboot
)
{
FIXME
(
"parent %p, inf_path %s, flags %#x, reboot %p, stub!
\n
"
,
parent
,
debugstr_w
(
inf_path
),
flags
,
reboot
);
FIXME
(
"parent %p, inf_path %s, flags %#
l
x, reboot %p, stub!
\n
"
,
parent
,
debugstr_w
(
inf_path
),
flags
,
reboot
);
return
TRUE
;
}
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