| 407 | } |
| 408 | |
| 409 | HRESULT DeviceManagerWasapi::Impl::QueryInterface( REFIID iid, void** object ) |
| 410 | { |
| 411 | CI_ASSERT_NOT_REACHABLE(); |
| 412 | if( iid == IID_IUnknown || iid == __uuidof( IMMNotificationClient ) ) { |
| 413 | *object = static_cast <IMMNotificationClient*>( this ); |
| 414 | } |
| 415 | else { |
| 416 | return E_NOINTERFACE; |
| 417 | } |
| 418 | return S_OK; |
| 419 | } |
| 420 | |
| 421 | STDMETHODIMP DeviceManagerWasapi::Impl::OnDeviceStateChanged( LPCWSTR device_id, DWORD new_state ) |
| 422 | { |
no outgoing calls
no test coverage detected