13 Nov
2022
13 Nov
'22
8:35 a.m.
Bernhard Kölbl (@besentv) commented about dlls/windows.media/main.c:
+ */ + +#include "initguid.h" +#include "private.h" + +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(media); + +HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID riid, void **out) +{ + FIXME("(clsid %s, riid %s, out %p) - stub.\n", debugstr_guid(clsid), debugstr_guid(riid), out); + return CLASS_E_CLASSNOTAVAILABLE; +} + +HRESULT WINAPI DllGetActivationFactory(HSTRING classid, IActivationFactory **factory) I think you're missing spaces between the braces here. You did it consistently everywhere else.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/1343#note_15595