March 20, 2026
2:54 p.m.
Nikolay Sivov (@nsivov) commented about dlls/mf/main.c:
return E_INVALIDARG; }
+/*********************************************************************** + * MFCreateDeviceSource (mf.@) + */ +HRESULT WINAPI MFCreateDeviceSource(IMFAttributes *attributes, IMFMediaSource **source) +{ + FIXME("%p %p: stub!\n", attributes, source); + + if (!attributes || !source) return E_INVALIDARG; + return E_NOTIMPL; +}
Should we maybe set output to null, just in case? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10408#note_133120