Commit f9293dc9 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

mmdevapi: Improve EndpointNotificationCallback stubs.

parent c79c8494
......@@ -1042,7 +1042,7 @@ static HRESULT WINAPI MMDevEnum_RegisterEndpointNotificationCallback(IMMDeviceEn
MMDevEnumImpl *This = (MMDevEnumImpl*)iface;
TRACE("(%p)->(%p)\n", This, client);
FIXME("stub\n");
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI MMDevEnum_UnregisterEndpointNotificationCallback(IMMDeviceEnumerator *iface, IMMNotificationClient *client)
......@@ -1050,7 +1050,7 @@ static HRESULT WINAPI MMDevEnum_UnregisterEndpointNotificationCallback(IMMDevice
MMDevEnumImpl *This = (MMDevEnumImpl*)iface;
TRACE("(%p)->(%p)\n", This, client);
FIXME("stub\n");
return E_NOTIMPL;
return S_OK;
}
static const IMMDeviceEnumeratorVtbl MMDevEnumVtbl =
......
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