mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
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:
parent
c62a95d2df
commit
8be6740b8d
@ -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)
|
|||||||
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.@)
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
@ 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)
|
||||||
|
Loading…
Reference in New Issue
Block a user