You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
![]() |
From 8cba6e456b2eaac13fac4190ee77218e9a3f4f95 Mon Sep 17 00:00:00 2001
|
||
|
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||
|
Date: Mon, 15 Oct 2018 12:09:40 +1100
|
||
|
Subject: [PATCH] setupapi: Add SetupDiRegisterCoDeviceInstallers stub
|
||
|
|
||
|
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||
|
---
|
||
|
dlls/setupapi/devinst.c | 10 ++++++++++
|
||
|
dlls/setupapi/setupapi.spec | 1 +
|
||
|
2 files changed, 11 insertions(+)
|
||
|
|
||
|
diff --git a/dlls/setupapi/devinst.c b/dlls/setupapi/devinst.c
|
||
|
index b15e580..3f8949e 100644
|
||
|
--- a/dlls/setupapi/devinst.c
|
||
|
+++ b/dlls/setupapi/devinst.c
|
||
|
@@ -4032,3 +4032,13 @@ BOOL WINAPI SetupDiInstallDeviceInterfaces(HDEVINFO dev, PSP_DEVINFO_DATA info_d
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
+/***********************************************************************
|
||
|
+ * SetupDiRegisterCoDeviceInstallers (SETUPAPI.@)
|
||
|
+ */
|
||
|
+BOOL WINAPI SetupDiRegisterCoDeviceInstallers(HDEVINFO dev, PSP_DEVINFO_DATA info_data)
|
||
|
+{
|
||
|
+ FIXME("%p, %p stub\n", dev, info_data);
|
||
|
+
|
||
|
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||
|
+ return FALSE;
|
||
|
+}
|
||
|
diff --git a/dlls/setupapi/setupapi.spec b/dlls/setupapi/setupapi.spec
|
||
|
index 3f906ed..125b205 100644
|
||
|
--- a/dlls/setupapi/setupapi.spec
|
||
|
+++ b/dlls/setupapi/setupapi.spec
|
||
|
@@ -380,6 +380,7 @@
|
||
|
@ stdcall SetupDiOpenDeviceInterfaceA(ptr str long ptr)
|
||
|
@ stub SetupDiOpenDeviceInterfaceRegKey
|
||
|
@ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
|
||
|
+@ stdcall SetupDiRegisterCoDeviceInstallers(ptr ptr)
|
||
|
@ stdcall SetupDiRegisterDeviceInfo(ptr ptr long ptr ptr ptr)
|
||
|
@ stdcall SetupDiRemoveDevice(ptr ptr)
|
||
|
@ stdcall SetupDiRemoveDeviceInterface(ptr ptr)
|
||
|
--
|
||
|
1.9.1
|
||
|
|