mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msi: Add a stub implementation of MsiEnumComponentCostsW.
This commit is contained in:
parent
b57a2f93a9
commit
c77d200f27
2 changed files with 13 additions and 1 deletions
|
@ -732,6 +732,18 @@ UINT WINAPI MsiEnableLogW(DWORD dwLogMode, LPCWSTR szLogFile, DWORD attributes)
|
|||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
UINT WINAPI MsiEnumComponentCostsW(MSIHANDLE hInstall, LPCWSTR szComponent,
|
||||
DWORD dwIndex, INSTALLSTATE iState,
|
||||
LPWSTR lpDriveBuf, DWORD *pcchDriveBuf,
|
||||
int *piCost, int *pTempCost)
|
||||
{
|
||||
FIXME("(%ld, %s, %d, %d, %p, %p, %p %p): stub!\n", hInstall,
|
||||
debugstr_w(szComponent), dwIndex, iState, lpDriveBuf,
|
||||
pcchDriveBuf, piCost, pTempCost);
|
||||
|
||||
return ERROR_NO_MORE_ITEMS;
|
||||
}
|
||||
|
||||
UINT WINAPI MsiQueryComponentStateA(LPCSTR szProductCode,
|
||||
LPCSTR szUserSid, MSIINSTALLCONTEXT dwContext,
|
||||
LPCSTR szComponent, INSTALLSTATE *pdwState)
|
||||
|
|
|
@ -214,7 +214,7 @@
|
|||
218 stdcall MsiGetFileHashA(str long ptr)
|
||||
219 stdcall MsiGetFileHashW(wstr long ptr)
|
||||
220 stub MsiEnumComponentCostsA
|
||||
221 stub MsiEnumComponentCostsW
|
||||
221 stdcall MsiEnumComponentCostsW(long str long long ptr ptr ptr ptr)
|
||||
222 stdcall MsiCreateAndVerifyInstallerDirectory(long)
|
||||
223 stdcall MsiGetFileSignatureInformationA(str long ptr ptr ptr)
|
||||
224 stdcall MsiGetFileSignatureInformationW(wstr long ptr ptr ptr)
|
||||
|
|
Loading…
Reference in a new issue