mmdevapi: Improve EndpointNotificationCallback stubs.

This commit is contained in:
Maarten Lankhorst 2010-04-19 11:52:46 +02:00 committed by Alexandre Julliard
parent c79c849479
commit f9293dc977

View file

@ -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 =