Module: wine Branch: master Commit: 201e291e5d3a22c24c9dceca9aa3ea3cba836c30 URL: http://source.winehq.org/git/wine.git/?a=commit;h=201e291e5d3a22c24c9dceca9a...
Author: Hans Leidekker hans@codeweavers.com Date: Tue Mar 24 10:24:46 2009 +0100
msi: Add stub implementations of MsiDeterminePatchSequenceA/W.
---
dlls/msi/msi.c | 18 ++++++++++++++++++ dlls/msi/msi.spec | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index be1eafd..2f2938c 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -395,6 +395,24 @@ UINT WINAPI MsiDetermineApplicablePatchesW(LPCWSTR szProductPackagePath, return ERROR_CALL_NOT_IMPLEMENTED; }
+UINT MsiDeterminePatchSequenceA(LPCSTR szProductCode, LPCSTR szUserSid, + MSIINSTALLCONTEXT dwContext, DWORD cPatchInfo, PMSIPATCHSEQUENCEINFOA pPatchInfo) +{ + FIXME("(%s, %s, %d, %d, %p): stub!\n", debugstr_a(szProductCode), + debugstr_a(szUserSid), dwContext, cPatchInfo, pPatchInfo); + + return ERROR_CALL_NOT_IMPLEMENTED; +} + +UINT MsiDeterminePatchSequenceW(LPCWSTR szProductCode, LPCWSTR szUserSid, + MSIINSTALLCONTEXT dwContext, DWORD cPatchInfo, PMSIPATCHSEQUENCEINFOW pPatchInfo) +{ + FIXME("(%s, %s, %d, %d, %p): stub!\n", debugstr_w(szProductCode), + debugstr_w(szUserSid), dwContext, cPatchInfo, pPatchInfo); + + return ERROR_CALL_NOT_IMPLEMENTED; +} + static UINT msi_open_package(LPCWSTR product, MSIINSTALLCONTEXT context, MSIPACKAGE **package) { diff --git a/dlls/msi/msi.spec b/dlls/msi/msi.spec index e1644be..7f0627a 100644 --- a/dlls/msi/msi.spec +++ b/dlls/msi/msi.spec @@ -246,8 +246,8 @@ 250 stdcall MsiQueryComponentStateW(wstr wstr long wstr ptr) 251 stub MsiQueryFeatureStateExA 252 stub MsiQueryFeatureStateExW -253 stub MsiDeterminePatchSequenceA -254 stub MsiDeterminePatchSequenceW +253 stdcall MsiDeterminePatchSequenceA(str str long long ptr) +254 stdcall MsiDeterminePatchSequenceW(wstr wstr long long ptr) 255 stdcall MsiSourceListAddSourceExA(str str long long str long) 256 stdcall MsiSourceListAddSourceExW(wstr wstr long long wstr long) 257 stdcall MsiSourceListClearSourceA(str str long long str)