msi: Fix wrong calling convention

Nikolay Sivov bunglehead at gmail.com
Sun Apr 26 15:32:37 CDT 2009


http://bugs.winehq.org/show_bug.cgi?id=17350

Changelog:
    - Fix wrong calling convention

>From d58964260490a23cda54a89c2f129e6677347673 Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <bunglehead at gmail.com>
Date: Mon, 27 Apr 2009 00:29:10 +0400
Subject: 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),
-- 
1.5.6.5





More information about the wine-patches mailing list