17 Jan
2024
17 Jan
'24
8:16 a.m.
Rémi Bernon (@rbernon) commented about dlls/dmime/audiopath.c:
unimpl_IPersistStream_GetSizeMax };
+static struct audio_path_config *impl_from_IUnknown(IUnknown *iface) +{ + return CONTAINING_RECORD(iface, struct audio_path_config, unk); +} + +static HRESULT WINAPI path_config_IUnknown_QueryInterface(IUnknown *unk, REFIID riid, void **ppobj)
```suggestion:-0+0 static HRESULT WINAPI path_config_IUnknown_QueryInterface(IUnknown *iface, REFIID riid, void **ppobj) ``` Ditto for the other functions, the parameter is consistently named iface everywhere else. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4852#note_57660