| 1743 | } |
| 1744 | |
| 1745 | void CCECClient::CallbackAddLog(const cec_log_message_cpp &message) |
| 1746 | { |
| 1747 | CLockObject lock(m_cbMutex); |
| 1748 | if (!!m_configuration.callbacks && |
| 1749 | !!m_configuration.callbacks->logMessage) |
| 1750 | { |
| 1751 | cec_log_message toClient; |
| 1752 | toClient.level = message.level; |
| 1753 | toClient.message = message.message.c_str(); |
| 1754 | toClient.time = message.time; |
| 1755 | m_configuration.callbacks->logMessage(m_configuration.callbackParam, &toClient); |
| 1756 | } |
| 1757 | } |
| 1758 | |
| 1759 | void CCECClient::CallbackConfigurationChanged(const libcec_configuration &config) |
| 1760 | { |
nothing calls this directly
no outgoing calls
no test coverage detected