msi: Add a stub implementation of MsiSourceListEnumSourcesA.

oldstable
James Hawkins 2007-07-29 21:29:21 -07:00 committed by Alexandre Julliard
parent 5e81dbebb0
commit 37286473a0
2 changed files with 14 additions and 1 deletions

View File

@ -256,7 +256,7 @@
260 stub MsiSourceListClearAllExW
261 stub MsiSourceListForceResolutionExA
262 stub MsiSourceListForceResolutionExW
263 stub MsiSourceListEnumSourcesA
263 stdcall MsiSourceListEnumSourcesA(str str long long long ptr ptr)
264 stub MsiSourceListEnumSourcesW
265 stdcall MsiSourceListGetInfoA(str str long long str ptr ptr)
266 stub MsiSourceListGetInfoW

View File

@ -168,6 +168,19 @@ static UINT find_given_source(HKEY key, LPCWSTR szSource, media_info *ss)
return rc;
}
/******************************************************************
* MsiSourceListEnumSourcesA (MSI.@)
*/
UINT WINAPI MsiSourceListEnumSourcesA(LPCSTR szProductCodeOrPatch, LPCSTR szUserSid,
MSIINSTALLCONTEXT dwContext,
DWORD dwOptions, DWORD dwIndex,
LPSTR szSource, LPDWORD pcchSource)
{
FIXME("(%s, %s, %d, %d, %d, %p, %p): stub!\n", szProductCodeOrPatch, szUserSid,
dwContext, dwOptions, dwIndex, szSource, pcchSource);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************
* MsiSourceListGetInfoA (MSI.@)
*/