SETUPAPI - add SetupCreateDiskSpaceList stub implementation

Mike McCormack mike at codeweavers.com
Sat Mar 13 19:12:10 CST 2004


ChangeLog:
* add SetupCreateDiskSpaceList stub implementation
-------------- next part --------------
Index: dlls/setupapi/setupapi.spec
===================================================================
RCS file: /home/wine/wine/dlls/setupapi/setupapi.spec,v
retrieving revision 1.25
diff -u -r1.25 setupapi.spec
--- dlls/setupapi/setupapi.spec	27 Feb 2004 04:43:32 -0000	1.25
+++ dlls/setupapi/setupapi.spec	14 Mar 2004 00:26:35 -0000
@@ -70,8 +70,8 @@
 @ stub SetupCopyErrorW
 @ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
 @ stub SetupCopyOEMInfW
-@ stub SetupCreateDiskSpaceListA
-@ stub SetupCreateDiskSpaceListW
+@ stdcall SetupCreateDiskSpaceListA(ptr long long)
+@ stdcall SetupCreateDiskSpaceListW(ptr long long)
 @ stub SetupDecompressOrCopyFileA
 @ stub SetupDecompressOrCopyFileW
 @ stub SetupDefaultQueueCallback
Index: dlls/setupapi/stubs.c
===================================================================
RCS file: /home/wine/wine/dlls/setupapi/stubs.c,v
retrieving revision 1.19
diff -u -r1.19 stubs.c
--- dlls/setupapi/stubs.c	27 Feb 2004 04:43:32 -0000	1.19
+++ dlls/setupapi/stubs.c	14 Mar 2004 00:26:35 -0000
@@ -199,3 +199,23 @@
           InfSpec, SearchControl, ReturnBuffer, ReturnBufferSize, RequiredSize );
     return TRUE;
 }
+
+/***********************************************************************
+ *		SetupCreateDiskSpaceListA  (SETUPAPI.@)
+ */
+typedef LPVOID HDSKSPC;
+HDSKSPC SetupCreateDiskSpaceListA( PVOID Reserved1, DWORD Reserved2, UINT Flags )
+{
+    FIXME("%08lx\n", Flags);
+    return NULL;
+}
+
+/***********************************************************************
+ *		SetupCreateDiskSpaceListA  (SETUPAPI.@)
+ */
+HDSKSPC SetupCreateDiskSpaceListW( PVOID Reserved1, DWORD Reserved2, UINT Flags )
+{
+    FIXME("%08lx\n", Flags);
+    return NULL;
+}
+


More information about the wine-patches mailing list