msi: stub MsiEnumPatches

Aric Stewart aric at codeweavers.com
Mon Sep 5 14:33:28 CDT 2005


Add a stub for MsiEnumPatches
-------------- next part --------------
Index: dlls/msi/msi.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.c,v
retrieving revision 1.97
diff -u -r1.97 msi.c
--- dlls/msi/msi.c	10 Aug 2005 13:02:43 -0000	1.97
+++ dlls/msi/msi.c	5 Sep 2005 19:32:16 -0000
@@ -1752,3 +1757,11 @@
                            dwReinstallMode);
     return ERROR_SUCCESS;
 }
+
+UINT WINAPI MsiEnumPatchesA(LPCSTR szProduct, DWORD iPatchIndex, 
+        LPSTR lpPatchBuf, LPSTR lpTransformsBuf, DWORD* pcchTransformsBuf)
+{
+    FIXME("STUB: %s %i %p %p %p\n",debugstr_a(szProduct),iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
+    return ERROR_NO_MORE_ITEMS;
+}
+
Index: dlls/msi/msi.spec
===================================================================
RCS file: /home/wine/wine/dlls/msi/msi.spec,v
retrieving revision 1.43
diff -u -r1.43 msi.spec
--- dlls/msi/msi.spec	24 Aug 2005 10:56:27 -0000	1.43
+++ dlls/msi/msi.spec	5 Sep 2005 19:32:17 -0000
@@ -173,7 +173,7 @@
 177 stub MsiAdvertiseScriptW
 178 stub MsiGetPatchInfoA
 179 stub MsiGetPatchInfoW
-180 stub MsiEnumPatchesA
+180 stdcall MsiEnumPatchesA(str long str ptr ptr)
 181 stub MsiEnumPatchesW
 182 stdcall -private DllGetVersion(ptr)
 183 stub MsiGetProductCodeFromPackageCodeA


More information about the wine-patches mailing list