From db1baf73670239343d9d31cb44b747ccafb83bd1 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Fri, 21 Jul 2006 14:05:00 +0900 Subject: [PATCH] msi: Add a stub implementation for MsiProvideQualifiedComponentExA. --- dlls/msi/msi.c | 15 +++++++++++++++ dlls/msi/msi.spec | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index f138d1ca463..0d74524d66e 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -1605,6 +1605,21 @@ UINT WINAPI MsiProvideQualifiedComponentExW(LPCWSTR szComponent, return ERROR_FILE_NOT_FOUND; } +/*********************************************************************** + * 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.@] */ diff --git a/dlls/msi/msi.spec b/dlls/msi/msi.spec index 27c04c802b9..d718fd21b6e 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)