14 Aug
2017
14 Aug
'17
5:37 a.m.
Hi Andrey, On 14/08/17 19:59, Andrey Gusev wrote:
Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> ---
+ * MFTEnumEx (mfplat.@) + */ +HRESULT WINAPI MFTEnumEx(GUID category, UINT32 flags, const MFT_REGISTER_TYPE_INFO *input_type, + const MFT_REGISTER_TYPE_INFO *output_type, IMFActivate ***activate, + UINT32 *pcount) +{ + FIXME("(%s, %x, %p, %p, %p, %p): stub\n", debugstr_guid(&category), flags, input_type, + output_type, activate, pcount); + return S_OK; +} If you must return S_OK, please set pcount to 0. (maybe rename pcount to count at the same time).
Alistair.