17 Jan
2024
17 Jan
'24
10:57 p.m.
Rémi Bernon (@rbernon) commented about dlls/dmime/audiopath.c:
+ /* IPersistStream */ static HRESULT WINAPI path_config_IPersistStream_Load(IPersistStream *iface, IStream *stream) { struct audio_path_config *This = impl_from_IPersistStream(iface); + struct chunk_entry riff = {0}, chunk = {0}; + HRESULT hr = S_OK; + + FIXME("(%p, %p): Loading\n", This, stream); + + if (!stream) + return E_POINTER;
- FIXME("(%p, %p): Loading not implemented yet\n", This, stream); + hr = stream_get_chunk(stream, &riff); + if (FAILED(hr)) {
if (FAILED(hr))
{
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4852#note_57829