Commit 6a213b1c authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

newdev: Enable compilation with long types.

parent 228579ec
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = newdev.dll
IMPORTLIB = newdev
IMPORTS = setupapi
......
......@@ -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 %#lx, 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 %#lx.\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 %#lx, 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 %#lx, reboot %p, stub!\n", parent, debugstr_w(inf_path), flags, reboot);
return TRUE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment