Mike McCormack : msi: MoveMsiEnumPatches to registry.c

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jul 24 06:55:00 CDT 2006


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

Author: Mike McCormack <mike at codeweavers.com>
Date:   Mon Jul 24 15:24:53 2006 +0900

msi: MoveMsiEnumPatches to registry.c

---

 dlls/msi/msi.c      |   22 ----------------------
 dlls/msi/registry.c |   22 ++++++++++++++++++++++
 2 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c
index f81c9d6..1b12cdf 100644
--- a/dlls/msi/msi.c
+++ b/dlls/msi/msi.c
@@ -2089,28 +2089,6 @@ UINT WINAPI MsiReinstallFeatureA( LPCSTR
 }
 
 /***********************************************************************
- * MsiEnumPatchesA            [MSI.@]
- */
-UINT WINAPI MsiEnumPatchesA( LPCSTR szProduct, DWORD iPatchIndex, 
-        LPSTR lpPatchBuf, LPSTR lpTransformsBuf, DWORD* pcchTransformsBuf)
-{
-    FIXME("%s %ld %p %p %p\n", debugstr_a(szProduct),
-          iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
-    return ERROR_NO_MORE_ITEMS;
-}
-
-/***********************************************************************
- * MsiEnumPatchesW            [MSI.@]
- */
-UINT WINAPI MsiEnumPatchesW( LPCWSTR szProduct, DWORD iPatchIndex, 
-        LPWSTR lpPatchBuf, LPWSTR lpTransformsBuf, DWORD* pcchTransformsBuf)
-{
-    FIXME("%s %ld %p %p %p\n", debugstr_w(szProduct),
-          iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
-    return ERROR_NO_MORE_ITEMS;
-}
-
-/***********************************************************************
  * MsiGetFileHashW            [MSI.@]
  */
 UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions,
diff --git a/dlls/msi/registry.c b/dlls/msi/registry.c
index 7c6eca1..fe51ae7 100644
--- a/dlls/msi/registry.c
+++ b/dlls/msi/registry.c
@@ -1070,3 +1070,25 @@ UINT WINAPI MsiEnumRelatedProductsA(LPCS
     msi_free( szwUpgradeCode);
     return r;
 }
+
+/***********************************************************************
+ * MsiEnumPatchesA            [MSI.@]
+ */
+UINT WINAPI MsiEnumPatchesA( LPCSTR szProduct, DWORD iPatchIndex, 
+        LPSTR lpPatchBuf, LPSTR lpTransformsBuf, DWORD* pcchTransformsBuf)
+{
+    FIXME("%s %ld %p %p %p\n", debugstr_a(szProduct),
+          iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
+    return ERROR_NO_MORE_ITEMS;
+}
+
+/***********************************************************************
+ * MsiEnumPatchesW            [MSI.@]
+ */
+UINT WINAPI MsiEnumPatchesW( LPCWSTR szProduct, DWORD iPatchIndex, 
+        LPWSTR lpPatchBuf, LPWSTR lpTransformsBuf, DWORD* pcchTransformsBuf)
+{
+    FIXME("%s %ld %p %p %p\n", debugstr_w(szProduct),
+          iPatchIndex, lpPatchBuf, lpTransformsBuf, pcchTransformsBuf);
+    return ERROR_NO_MORE_ITEMS;
+}




More information about the wine-cvs mailing list