newdev: Win64 printf format warning fixes.

This commit is contained in:
Michael Stefaniuc 2006-10-03 23:39:59 +02:00 committed by Alexandre Julliard
parent bfe610264d
commit cd0796a9d0
2 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE = newdev.dll
IMPORTLIB = libnewdev.$(IMPLIBEXT)
IMPORTS = kernel32
EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = main.c

View File

@ -42,7 +42,7 @@ BOOL WINAPI InstallNewDevice(HWND hwndParent, LPGUID ClassGuid, PDWORD pReboot)
BOOL WINAPI UpdateDriverForPlugAndPlayDevicesA(HWND hwndParent, LPCSTR HardwareId,
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;
}
@ -53,6 +53,6 @@ BOOL WINAPI UpdateDriverForPlugAndPlayDevicesA(HWND hwndParent, LPCSTR HardwareI
BOOL WINAPI UpdateDriverForPlugAndPlayDevicesW(HWND hwndParent, LPCWSTR HardwareId,
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;
}