newdev: Add a stub for InstallSelectedDriver.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2015-10-13 05:09:28 -05:00 committed by Alexandre Julliard
parent c62a95d2df
commit 8be6740b8d
2 changed files with 15 additions and 0 deletions

View File

@ -18,8 +18,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winerror.h"
#include "winbase.h"
#include "winuser.h"
#include "winreg.h"
#include "setupapi.h"
#include "wine/unicode.h"
#include "wine/debug.h"
@ -35,6 +41,14 @@ BOOL WINAPI InstallNewDevice(HWND hwndParent, LPGUID ClassGuid, PDWORD pReboot)
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.@)

View File

@ -1,3 +1,4 @@
@ stdcall InstallNewDevice(long ptr ptr)
@ stdcall InstallSelectedDriver(long ptr wstr long ptr)
@ stdcall UpdateDriverForPlugAndPlayDevicesA(long str str long ptr)
@ stdcall UpdateDriverForPlugAndPlayDevicesW(long wstr wstr long ptr)