Commit 8be6740b authored by Austin English's avatar Austin English Committed by Alexandre Julliard

newdev: Add a stub for InstallSelectedDriver.

parent c62a95d2
...@@ -18,8 +18,14 @@ ...@@ -18,8 +18,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
#include <stdarg.h>
#include "windef.h" #include "windef.h"
#include "winerror.h" #include "winerror.h"
#include "winbase.h"
#include "winuser.h"
#include "winreg.h"
#include "setupapi.h"
#include "wine/unicode.h" #include "wine/unicode.h"
#include "wine/debug.h" #include "wine/debug.h"
...@@ -35,6 +41,14 @@ BOOL WINAPI InstallNewDevice(HWND hwndParent, LPGUID ClassGuid, PDWORD pReboot) ...@@ -35,6 +41,14 @@ BOOL WINAPI InstallNewDevice(HWND hwndParent, LPGUID ClassGuid, PDWORD pReboot)
return TRUE; return TRUE;
} }
/***********************************************************************
* InstallSelectedDriver (NEWDEV.@)
*/
BOOL WINAPI InstallSelectedDriver(HWND parent, HDEVINFO info, const WCHAR *reserved, BOOL backup, DWORD *reboot)
{
FIXME("Stub! %p %p %s %u %p\n", parent, info, debugstr_w(reserved), backup, reboot);
return TRUE;
}
/*********************************************************************** /***********************************************************************
* UpdateDriverForPlugAndPlayDevicesA (NEWDEV.@) * UpdateDriverForPlugAndPlayDevicesA (NEWDEV.@)
......
@ stdcall InstallNewDevice(long ptr ptr) @ stdcall InstallNewDevice(long ptr ptr)
@ stdcall InstallSelectedDriver(long ptr wstr long ptr)
@ stdcall UpdateDriverForPlugAndPlayDevicesA(long str str long ptr) @ stdcall UpdateDriverForPlugAndPlayDevicesA(long str str long ptr)
@ stdcall UpdateDriverForPlugAndPlayDevicesW(long wstr wstr long ptr) @ stdcall UpdateDriverForPlugAndPlayDevicesW(long wstr wstr long ptr)
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