Add real stub for MsiConfigureFeatureW.

This commit is contained in:
Steven Edwards 2005-08-03 10:56:43 +00:00 committed by Alexandre Julliard
parent f193c26554
commit cbec713615
2 changed files with 9 additions and 1 deletions

View File

@ -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];

View File

@ -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)