msi: Add stubs for MsiRemovePatches(A/W).
This commit is contained in:
parent
b9f18b3431
commit
d2bc004264
|
@ -4244,3 +4244,21 @@ UINT WINAPI Migrate10CachedPackagesW(void* a, void* b, void* c, DWORD d)
|
|||
FIXME("%p,%p,%p,%08x\n", a, b, c, d);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MsiRemovePatchesA [MSI.@]
|
||||
*/
|
||||
UINT WINAPI MsiRemovePatchesA(LPCSTR patchlist, LPCSTR product, INSTALLTYPE type, LPCSTR propertylist)
|
||||
{
|
||||
FIXME("(%s %s %d %s\n", debugstr_a(patchlist), debugstr_a(product), type, debugstr_a(propertylist));
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MsiRemovePatchesW [MSI.@]
|
||||
*/
|
||||
UINT WINAPI MsiRemovePatchesW(LPCWSTR patchlist, LPCWSTR product, INSTALLTYPE type, LPCWSTR propertylist)
|
||||
{
|
||||
FIXME("(%s %s %d %s\n", debugstr_w(patchlist), debugstr_w(product), type, debugstr_w(propertylist));
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -230,8 +230,8 @@
|
|||
234 stub MsiDeleteUserDataW
|
||||
235 stub Migrate10CachedPackagesA
|
||||
236 stdcall Migrate10CachedPackagesW(ptr ptr ptr long)
|
||||
237 stub MsiRemovePatchesA
|
||||
238 stub MsiRemovePatchesW
|
||||
237 stdcall MsiRemovePatchesA(str str long str)
|
||||
238 stdcall MsiRemovePatchesW(wstr wstr long wstr)
|
||||
239 stdcall MsiApplyMultiplePatchesA(str str str)
|
||||
240 stdcall MsiApplyMultiplePatchesW(wstr wstr wstr)
|
||||
241 stub MsiExtractPatchXMLDataA
|
||||
|
|
Loading…
Reference in New Issue