Commit 11daf186 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

mmdevapi: Return success from SAORS_GetAvailableDynamicObjectCount().

parent a639db3e
......@@ -303,7 +303,9 @@ static HRESULT WINAPI SAORS_GetAvailableDynamicObjectCount(
{
SpatialAudioStreamImpl *This = impl_from_ISpatialAudioObjectRenderStream(iface);
FIXME("(%p)->(%p)\n", This, count);
return E_NOTIMPL;
*count = 0;
return S_OK;
}
static HRESULT WINAPI SAORS_GetService(ISpatialAudioObjectRenderStream *iface,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment