msi: Add a stub implementation of MsiSourceListClearAll.
This commit is contained in:
parent
2396e2a59f
commit
fc56e92657
@ -201,8 +201,8 @@
|
|||||||
205 stdcall MsiEnumRelatedProductsW(wstr long long ptr)
|
205 stdcall MsiEnumRelatedProductsW(wstr long long ptr)
|
||||||
206 stub MsiSetFeatureAttributesA
|
206 stub MsiSetFeatureAttributesA
|
||||||
207 stub MsiSetFeatureAttributesW
|
207 stub MsiSetFeatureAttributesW
|
||||||
208 stub MsiSourceListClearAllA
|
208 stdcall MsiSourceListClearAllA(str str long)
|
||||||
209 stub MsiSourceListClearAllW
|
209 stdcall MsiSourceListClearAllW(wstr wstr long)
|
||||||
210 stdcall MsiSourceListAddSourceA(str str long str)
|
210 stdcall MsiSourceListAddSourceA(str str long str)
|
||||||
211 stdcall MsiSourceListAddSourceW(wstr wstr long wstr)
|
211 stdcall MsiSourceListAddSourceW(wstr wstr long wstr)
|
||||||
212 stub MsiSourceListForceResolutionA
|
212 stub MsiSourceListForceResolutionA
|
||||||
|
@ -617,3 +617,21 @@ UINT WINAPI MsiSourceListAddMediaDiskW(LPCWSTR szProduct, LPCWSTR szUserSid,
|
|||||||
|
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************
|
||||||
|
* MsiSourceListAddSourceExA (MSI.@)
|
||||||
|
*/
|
||||||
|
UINT WINAPI MsiSourceListClearAllA( LPCSTR szProduct, LPCSTR szUserName, DWORD dwReserved )
|
||||||
|
{
|
||||||
|
FIXME("(%s %s %ld) stub\n", debugstr_a(szProduct), debugstr_a(szUserName), dwReserved);
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************************
|
||||||
|
* MsiSourceListAddSourceExW (MSI.@)
|
||||||
|
*/
|
||||||
|
UINT WINAPI MsiSourceListClearAllW( LPCWSTR szProduct, LPCWSTR szUserName, DWORD dwReserved )
|
||||||
|
{
|
||||||
|
FIXME("(%s %s %ld) stub\n", debugstr_w(szProduct), debugstr_w(szUserName), dwReserved);
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user