James Hawkins : msi: Fix the type of the last parameter of MsiEnumPatchesEx .

Alexandre Julliard julliard at winehq.org
Mon Dec 8 09:46:20 CST 2008


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

Author: James Hawkins <jhawkins at codeweavers.com>
Date:   Mon Dec  8 03:13:13 2008 -0600

msi: Fix the type of the last parameter of MsiEnumPatchesEx.

---

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

diff --git a/dlls/msi/registry.c b/dlls/msi/registry.c
index 2568e7e..d0ba4d3 100644
--- a/dlls/msi/registry.c
+++ b/dlls/msi/registry.c
@@ -1654,7 +1654,7 @@ UINT WINAPI MsiEnumRelatedProductsA(LPCSTR szUpgradeCode, DWORD dwReserved,
 UINT WINAPI MsiEnumPatchesExA(LPCSTR szProductCode, LPCSTR szUserSid,
         DWORD dwContext, DWORD dwFilter, DWORD dwIndex, LPSTR szPatchCode,
         LPSTR szTargetProductCode, MSIINSTALLCONTEXT *pdwTargetProductContext,
-        LPSTR szTargetUserSid, LPSTR pcchTargetUserSid)
+        LPSTR szTargetUserSid, LPDWORD pcchTargetUserSid)
 {
     FIXME("(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p) stub!\n",
           debugstr_a(szProductCode), debugstr_a(szUserSid), dwContext, dwFilter,
@@ -1669,7 +1669,7 @@ UINT WINAPI MsiEnumPatchesExA(LPCSTR szProductCode, LPCSTR szUserSid,
 UINT WINAPI MsiEnumPatchesExW(LPCWSTR szProductCode, LPCWSTR szUserSid,
         DWORD dwContext, DWORD dwFilter, DWORD dwIndex, LPWSTR szPatchCode,
         LPWSTR szTargetProductCode, MSIINSTALLCONTEXT *pdwTargetProductContext,
-        LPWSTR szTargetUserSid, LPWSTR pcchTargetUserSid)
+        LPWSTR szTargetUserSid, LPDWORD pcchTargetUserSid)
 {
     FIXME("(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p) stub!\n",
           debugstr_w(szProductCode), debugstr_w(szUserSid), dwContext, dwFilter,
diff --git a/include/msi.h b/include/msi.h
index 0def6cb..642de00 100644
--- a/include/msi.h
+++ b/include/msi.h
@@ -605,9 +605,9 @@ UINT WINAPI MsiEnumPatchesW(LPCWSTR, DWORD, LPWSTR, LPWSTR, LPDWORD);
 #define     MsiEnumPatches WINELIB_NAME_AW(MsiEnumPatches)
 
 UINT WINAPI MsiEnumPatchesExA(LPCSTR, LPCSTR, DWORD, DWORD, DWORD, LPSTR, LPSTR,
-                              MSIINSTALLCONTEXT*, LPSTR, LPSTR);
+                              MSIINSTALLCONTEXT*, LPSTR, LPDWORD);
 UINT WINAPI MsiEnumPatchesExW(LPCWSTR, LPCWSTR, DWORD, DWORD, DWORD, LPWSTR, LPWSTR,
-                              MSIINSTALLCONTEXT*, LPWSTR, LPWSTR);
+                              MSIINSTALLCONTEXT*, LPWSTR, LPDWORD);
 #define     MsiEnumPatchesEx WINELIB_NAME_AW(MsiEnumPatchesEx)
 
 UINT WINAPI MsiGetFileHashA(LPCSTR, DWORD, PMSIFILEHASHINFO);




More information about the wine-cvs mailing list