add stub for DiShowUpdateDevice

svn path=/trunk/; revision=59089
This commit is contained in:
Christoph von Wittich 2013-05-27 17:35:15 +00:00
parent 44352306db
commit 9ba45bbf6b
2 changed files with 17 additions and 0 deletions

View file

@ -9,3 +9,4 @@
@ stub RollbackDriver
@ stdcall UpdateDriverForPlugAndPlayDevicesA(ptr str str long ptr)
@ stdcall UpdateDriverForPlugAndPlayDevicesW(ptr wstr wstr long ptr)
@ stdcall DiShowUpdateDevice(ptr ptr ptr long ptr)

View file

@ -51,3 +51,19 @@ InstallSelectedDriverW(
SetLastError(ERROR_GEN_FAILURE);
return FALSE;
}
/*
* @unimplemented
*/
BOOL WINAPI
DiShowUpdateDevice(
IN HWND hwndParent OPTIONAL,
IN HDEVINFO DeviceInfoSet,
IN PSP_DEVINFO_DATA DeviceInfoData,
IN DWORD Flags,
OUT PBOOL NeedReboot OPTIONAL)
{
UNIMPLEMENTED;
SetLastError(ERROR_GEN_FAILURE);
return FALSE;
}