Nikolay Sivov : msi: Fix wrong calling convention.

Alexandre Julliard julliard at winehq.org
Mon Apr 27 08:04:07 CDT 2009


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

Author: Nikolay Sivov <bunglehead at gmail.com>
Date:   Mon Apr 27 00:29:10 2009 +0400

msi: Fix wrong calling convention.

---

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

diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c
index 90c7ba6..bee45b0 100644
--- a/dlls/msi/msi.c
+++ b/dlls/msi/msi.c
@@ -407,7 +407,7 @@ UINT WINAPI MsiDetermineApplicablePatchesW(LPCWSTR szProductPackagePath,
     return ERROR_CALL_NOT_IMPLEMENTED;
 }
 
-UINT MsiDeterminePatchSequenceA(LPCSTR szProductCode, LPCSTR szUserSid,
+UINT WINAPI MsiDeterminePatchSequenceA(LPCSTR szProductCode, LPCSTR szUserSid,
     MSIINSTALLCONTEXT dwContext, DWORD cPatchInfo, PMSIPATCHSEQUENCEINFOA pPatchInfo)
 {
     FIXME("(%s, %s, %d, %d, %p): stub!\n", debugstr_a(szProductCode),
@@ -416,7 +416,7 @@ UINT MsiDeterminePatchSequenceA(LPCSTR szProductCode, LPCSTR szUserSid,
     return ERROR_CALL_NOT_IMPLEMENTED;
 }
 
-UINT MsiDeterminePatchSequenceW(LPCWSTR szProductCode, LPCWSTR szUserSid,
+UINT WINAPI MsiDeterminePatchSequenceW(LPCWSTR szProductCode, LPCWSTR szUserSid,
     MSIINSTALLCONTEXT dwContext, DWORD cPatchInfo, PMSIPATCHSEQUENCEINFOW pPatchInfo)
 {
     FIXME("(%s, %s, %d, %d, %p): stub!\n", debugstr_w(szProductCode),




More information about the wine-cvs mailing list