mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 10:59:45 +00:00
Add real stub for MsiConfigureFeatureW.
This commit is contained in:
parent
f193c26554
commit
cbec713615
@ -1691,6 +1691,14 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UINT WINAPI MsiConfigureFeatureW(LPWSTR szProduct, LPWSTR szFeature, INSTALLSTATE eInstallState)
|
||||||
|
{
|
||||||
|
FIXME("%s %s %i\n", debugstr_w(szProduct), debugstr_w(szFeature), eInstallState);
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
UINT WINAPI MsiCreateAndVerifyInstallerDirectory(DWORD dwReserved)
|
UINT WINAPI MsiCreateAndVerifyInstallerDirectory(DWORD dwReserved)
|
||||||
{
|
{
|
||||||
WCHAR path[MAX_PATH];
|
WCHAR path[MAX_PATH];
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
11 stub MsiConfigureFeatureA
|
11 stub MsiConfigureFeatureA
|
||||||
12 stub MsiConfigureFeatureFromDescriptorA
|
12 stub MsiConfigureFeatureFromDescriptorA
|
||||||
13 stub MsiConfigureFeatureFromDescriptorW
|
13 stub MsiConfigureFeatureFromDescriptorW
|
||||||
14 stub MsiConfigureFeatureW
|
14 stdcall MsiConfigureFeatureW(str str ptr)
|
||||||
15 stdcall MsiConfigureProductA(str long long)
|
15 stdcall MsiConfigureProductA(str long long)
|
||||||
16 stdcall MsiConfigureProductW(wstr long long)
|
16 stdcall MsiConfigureProductW(wstr long long)
|
||||||
17 stdcall MsiCreateRecord(long)
|
17 stdcall MsiCreateRecord(long)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user