| 1757 | } |
| 1758 | |
| 1759 | void CCECClient::CallbackConfigurationChanged(const libcec_configuration &config) |
| 1760 | { |
| 1761 | CLockObject lock(m_cbMutex); |
| 1762 | if (!!m_configuration.callbacks && |
| 1763 | !!m_configuration.callbacks->configurationChanged && |
| 1764 | m_processor->CECInitialised()) |
| 1765 | { |
| 1766 | m_configuration.callbacks->configurationChanged(m_configuration.callbackParam, &config); |
| 1767 | } |
| 1768 | } |
| 1769 | |
| 1770 | void CCECClient::CallbackSourceActivated(bool bActivated, const cec_logical_address logicalAddress) |
| 1771 | { |
nothing calls this directly
no test coverage detected