Mike McCormack : msi: Add a stub implementation for MsiProvideQualifiedComponentExA.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jul 21 04:14:36 CDT 2006


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

Author: Mike McCormack <mike at codeweavers.com>
Date:   Fri Jul 21 14:05:00 2006 +0900

msi: Add a stub implementation for MsiProvideQualifiedComponentExA.

---

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

diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c
index f138d1c..0d74524 100644
--- a/dlls/msi/msi.c
+++ b/dlls/msi/msi.c
@@ -1606,6 +1606,21 @@ UINT WINAPI MsiProvideQualifiedComponent
 }
 
 /***********************************************************************
+ * MsiProvideQualifiedComponentExA [MSI.@]
+ */
+UINT WINAPI MsiProvideQualifiedComponentExA(LPCSTR szComponent,
+                LPCSTR szQualifier, DWORD dwInstallMode, LPSTR szProduct,
+                DWORD Unused1, DWORD Unused2, LPSTR lpPathBuf,
+                DWORD* pcchPathBuf)
+{
+    FIXME("%s %s %li %s %li %li %p %p\n", debugstr_a(szComponent),
+          debugstr_a(szQualifier), dwInstallMode, debugstr_a(szProduct),
+          Unused1, Unused2, lpPathBuf, pcchPathBuf);
+
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+/***********************************************************************
  * MsiProvideQualifiedComponentW [MSI.@]
  */
 UINT WINAPI MsiProvideQualifiedComponentW( LPCWSTR szComponent,
diff --git a/dlls/msi/msi.spec b/dlls/msi/msi.spec
index 27c04c8..d718fd2 100644
--- a/dlls/msi/msi.spec
+++ b/dlls/msi/msi.spec
@@ -195,7 +195,7 @@
 199 stdcall MsiMessageBoxW(long long long long long long)
 200 stdcall MsiDecomposeDescriptorA(str ptr ptr ptr ptr)
 201 stdcall MsiDecomposeDescriptorW(wstr ptr ptr ptr ptr)
-202 stub MsiProvideQualifiedComponentExA
+202 stdcall MsiProvideQualifiedComponentExA(str str long str long long ptr ptr)
 203 stdcall MsiProvideQualifiedComponentExW(wstr wstr long wstr long long ptr ptr)
 204 stdcall MsiEnumRelatedProductsA(str long long ptr)
 205 stdcall MsiEnumRelatedProductsW(wstr long long ptr)




More information about the wine-cvs mailing list