msi: Add stub implementations of MsiSourceListClearSourceA/W.
This commit is contained in:
parent
7bfa0d2c7f
commit
8fec17b5ad
|
@ -250,8 +250,8 @@
|
|||
254 stub MsiDeterminePatchSequenceW
|
||||
255 stdcall MsiSourceListAddSourceExA(str str long long str long)
|
||||
256 stdcall MsiSourceListAddSourceExW(wstr wstr long long wstr long)
|
||||
257 stub MsiSourceListClearSourceA
|
||||
258 stub MsiSourceListClearSourceW
|
||||
257 stdcall MsiSourceListClearSourceA(str str long long str)
|
||||
258 stdcall MsiSourceListClearSourceW(wstr wstr long long wstr)
|
||||
259 stub MsiSourceListClearAllExA
|
||||
260 stub MsiSourceListClearAllExW
|
||||
261 stub MsiSourceListForceResolutionExA
|
||||
|
|
|
@ -1314,3 +1314,27 @@ UINT WINAPI MsiSourceListClearAllW( LPCWSTR szProduct, LPCWSTR szUserName, DWORD
|
|||
FIXME("(%s %s %d)\n", debugstr_w(szProduct), debugstr_w(szUserName), dwReserved);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* MsiSourceListClearSourceA (MSI.@)
|
||||
*/
|
||||
UINT WINAPI MsiSourceListClearSourceA(LPCSTR szProductCodeOrPatchCode, LPCSTR szUserSid,
|
||||
MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
|
||||
LPCSTR szSource)
|
||||
{
|
||||
FIXME("(%s %s %x %x %s)\n", debugstr_a(szProductCodeOrPatchCode), debugstr_a(szUserSid),
|
||||
dwContext, dwOptions, debugstr_a(szSource));
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* MsiSourceListClearSourceW (MSI.@)
|
||||
*/
|
||||
UINT WINAPI MsiSourceListClearSourceW(LPCWSTR szProductCodeOrPatchCode, LPCWSTR szUserSid,
|
||||
MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
|
||||
LPCWSTR szSource)
|
||||
{
|
||||
FIXME("(%s %s %x %x %s)\n", debugstr_w(szProductCodeOrPatchCode), debugstr_w(szUserSid),
|
||||
dwContext, dwOptions, debugstr_w(szSource));
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue