| 842 | } |
| 843 | |
| 844 | bool CCECClient::SendKeyRelease(const cec_logical_address iDestination, bool bWait /* = true */) |
| 845 | { |
| 846 | CCECBusDevice *dest = m_processor->GetDevice(iDestination); |
| 847 | |
| 848 | return dest ? |
| 849 | dest->TransmitKeyRelease(GetPrimaryLogicalAddress(), bWait) : |
| 850 | false; |
| 851 | } |
| 852 | |
| 853 | bool CCECClient::GetCurrentConfiguration(libcec_configuration &configuration) |
| 854 | { |
nothing calls this directly
no test coverage detected