| 833 | } |
| 834 | |
| 835 | bool CCECClient::SendKeypress(const cec_logical_address iDestination, const cec_user_control_code key, bool bWait /* = true */) |
| 836 | { |
| 837 | CCECBusDevice *dest = m_processor->GetDevice(iDestination); |
| 838 | |
| 839 | return dest ? |
| 840 | dest->TransmitKeypress(GetPrimaryLogicalAddress(), key, bWait) : |
| 841 | false; |
| 842 | } |
| 843 | |
| 844 | bool CCECClient::SendKeyRelease(const cec_logical_address iDestination, bool bWait /* = true */) |
| 845 | { |
nothing calls this directly
no test coverage detected