mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
[newdev]
add stub for DiShowUpdateDevice svn path=/trunk/; revision=59089
This commit is contained in:
parent
44352306db
commit
9ba45bbf6b
2 changed files with 17 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue