Commit cd0796a9 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

newdev: Win64 printf format warning fixes.

parent bfe61026
...@@ -5,7 +5,6 @@ VPATH = @srcdir@ ...@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE = newdev.dll MODULE = newdev.dll
IMPORTLIB = libnewdev.$(IMPLIBEXT) IMPORTLIB = libnewdev.$(IMPLIBEXT)
IMPORTS = kernel32 IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = main.c C_SRCS = main.c
......
...@@ -42,7 +42,7 @@ BOOL WINAPI InstallNewDevice(HWND hwndParent, LPGUID ClassGuid, PDWORD pReboot) ...@@ -42,7 +42,7 @@ BOOL WINAPI InstallNewDevice(HWND hwndParent, LPGUID ClassGuid, PDWORD pReboot)
BOOL WINAPI UpdateDriverForPlugAndPlayDevicesA(HWND hwndParent, LPCSTR HardwareId, BOOL WINAPI UpdateDriverForPlugAndPlayDevicesA(HWND hwndParent, LPCSTR HardwareId,
LPCSTR FullInfPath, DWORD InstallFlags, PBOOL bRebootRequired OPTIONAL) LPCSTR FullInfPath, DWORD InstallFlags, PBOOL bRebootRequired OPTIONAL)
{ {
FIXME("Stub! %s %s 0x%08lx\n", HardwareId, FullInfPath, InstallFlags); FIXME("Stub! %s %s 0x%08x\n", HardwareId, FullInfPath, InstallFlags);
return TRUE; return TRUE;
} }
...@@ -53,6 +53,6 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDevicesA(HWND hwndParent, LPCSTR HardwareI ...@@ -53,6 +53,6 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDevicesA(HWND hwndParent, LPCSTR HardwareI
BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND hwndParent, LPCWSTR HardwareId, BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND hwndParent, LPCWSTR HardwareId,
LPCWSTR FullInfPath, DWORD InstallFlags, PBOOL bRebootRequired OPTIONAL) LPCWSTR FullInfPath, DWORD InstallFlags, PBOOL bRebootRequired OPTIONAL)
{ {
FIXME("Stub! %s %s 0x%08lx\n", debugstr_w(HardwareId), debugstr_w(FullInfPath), InstallFlags); FIXME("Stub! %s %s 0x%08x\n", debugstr_w(HardwareId), debugstr_w(FullInfPath), InstallFlags);
return TRUE; 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