Vincent Povirk : setupapi: Stub SetupDiDestroyDriverInfoList.

Alexandre Julliard julliard at winehq.org
Tue Jan 28 13:33:25 CST 2014


Module: wine
Branch: master
Commit: bdadd760a3b0685d828a3cfa09ed8a82df72e48c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=bdadd760a3b0685d828a3cfa09ed8a82df72e48c

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Mon Jan 27 13:12:41 2014 -0600

setupapi: Stub SetupDiDestroyDriverInfoList.

---

 dlls/setupapi/setupapi.spec |    2 +-
 dlls/setupapi/stubs.c       |   12 ++++++++++++
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/dlls/setupapi/setupapi.spec b/dlls/setupapi/setupapi.spec
index 16cd339..4349055 100644
--- a/dlls/setupapi/setupapi.spec
+++ b/dlls/setupapi/setupapi.spec
@@ -307,7 +307,7 @@
 @ stub SetupDiDeleteDeviceRegKey
 @ stdcall SetupDiDestroyClassImageList(ptr)
 @ stdcall SetupDiDestroyDeviceInfoList(long)
-@ stub SetupDiDestroyDriverInfoList
+@ stdcall SetupDiDestroyDriverInfoList(ptr ptr long)
 @ stdcall SetupDiDrawMiniIcon(ptr int128 long long)
 @ stdcall SetupDiEnumDeviceInfo(long long ptr)
 @ stdcall SetupDiEnumDeviceInterfaces(long ptr ptr long ptr)
diff --git a/dlls/setupapi/stubs.c b/dlls/setupapi/stubs.c
index 76dc410..fad9d23 100644
--- a/dlls/setupapi/stubs.c
+++ b/dlls/setupapi/stubs.c
@@ -525,6 +525,18 @@ BOOL WINAPI SetupDiBuildDriverInfoList(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA
  }
 
 /***********************************************************************
+ *              SetupDiDestroyDriverInfoList  (SETUPAPI.@)
+ */
+
+BOOL WINAPI SetupDiDestroyDriverInfoList(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA DeviceInfoData, DWORD DriverType)
+{
+    FIXME("%p %p %d\n", DeviceInfoSet, DeviceInfoData, DriverType);
+
+    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+    return FALSE;
+}
+
+/***********************************************************************
  *              SetupDiDeleteDeviceInfo  (SETUPAPI.@)
  */
 




More information about the wine-cvs mailing list