| 1801 | } |
| 1802 | |
| 1803 | int CCECClient::CallbackCommandHandler(const cec_command &command) |
| 1804 | { |
| 1805 | CLockObject lock(m_cbMutex); |
| 1806 | if (!!m_configuration.callbacks && |
| 1807 | !!m_configuration.callbacks->commandHandler) |
| 1808 | { |
| 1809 | return m_configuration.callbacks->commandHandler(m_configuration.callbackParam, &command); |
| 1810 | } |
| 1811 | return 0; |
| 1812 | } |
| 1813 | |
| 1814 | bool CCECClient::AudioEnable(bool enable) |
| 1815 | { |
nothing calls this directly
no outgoing calls
no test coverage detected