mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
msi: Add a stub implementation for MsiProvideQualifiedComponentExA.
This commit is contained in:
parent
8bce656fd3
commit
db1baf7367
@ -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.@]
|
||||
*/
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user