mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
Fix the stub for MsiConfigureFeature.
This commit is contained in:
parent
438f19b9b8
commit
4a202c2112
@ -1696,14 +1696,24 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
|
||||
return rc;
|
||||
}
|
||||
|
||||
UINT WINAPI MsiConfigureFeatureW(LPWSTR szProduct, LPWSTR szFeature, INSTALLSTATE eInstallState)
|
||||
/***********************************************************************
|
||||
* MsiConfigureFeatureA [MSI.@]
|
||||
*/
|
||||
UINT WINAPI MsiConfigureFeatureA(LPCSTR szProduct, LPCSTR szFeature, INSTALLSTATE eInstallState)
|
||||
{
|
||||
FIXME("%s %s %i\n", debugstr_a(szProduct), debugstr_a(szFeature), eInstallState);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MsiConfigureFeatureW [MSI.@]
|
||||
*/
|
||||
UINT WINAPI MsiConfigureFeatureW(LPCWSTR szProduct, LPCWSTR szFeature, INSTALLSTATE eInstallState)
|
||||
{
|
||||
FIXME("%s %s %i\n", debugstr_w(szProduct), debugstr_w(szFeature), eInstallState);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
UINT WINAPI MsiCreateAndVerifyInstallerDirectory(DWORD dwReserved)
|
||||
{
|
||||
WCHAR path[MAX_PATH];
|
||||
|
@ -4,10 +4,10 @@
|
||||
8 stdcall MsiCloseHandle(long)
|
||||
9 stdcall MsiCollectUserInfoA(str)
|
||||
10 stdcall MsiCollectUserInfoW(wstr)
|
||||
11 stub MsiConfigureFeatureA
|
||||
11 stdcall MsiConfigureFeatureA(str str long)
|
||||
12 stub MsiConfigureFeatureFromDescriptorA
|
||||
13 stub MsiConfigureFeatureFromDescriptorW
|
||||
14 stdcall MsiConfigureFeatureW(str str ptr)
|
||||
14 stdcall MsiConfigureFeatureW(wstr wstr ptr)
|
||||
15 stdcall MsiConfigureProductA(str long long)
|
||||
16 stdcall MsiConfigureProductW(wstr long long)
|
||||
17 stdcall MsiCreateRecord(long)
|
||||
|
@ -418,6 +418,10 @@ UINT WINAPI MsiConfigureProductExA(LPCSTR, int, INSTALLSTATE, LPCSTR);
|
||||
UINT WINAPI MsiConfigureProductExW(LPCWSTR, int, INSTALLSTATE, LPCWSTR);
|
||||
#define MsiConfigureProductEx WINELIB_NAME_AW(MsiConfigureProductEx);
|
||||
|
||||
UINT WINAPI MsiConfigureFeatureA(LPCSTR, LPCSTR, INSTALLSTATE);
|
||||
UINT WINAPI MsiConfigureFeatureW(LPCWSTR, LPCWSTR, INSTALLSTATE);
|
||||
#define MsiConfigureFeature WINELIB_NAME_AW(MsiConfigureFeature);
|
||||
|
||||
UINT WINAPI MsiGetProductCodeA(LPCSTR, LPSTR);
|
||||
UINT WINAPI MsiGetProductCodeW(LPCWSTR, LPWSTR);
|
||||
#define MsiGetProductCode WINELIB_NAME_AW(MsiGetProductCode)
|
||||
|
Loading…
Reference in New Issue
Block a user