| 1778 | } |
| 1779 | |
| 1780 | void CCECClient::CallbackAlert(const libcec_alert type, const libcec_parameter ¶m) |
| 1781 | { |
| 1782 | CLockObject lock(m_cbMutex); |
| 1783 | if (!!m_configuration.callbacks && |
| 1784 | !!m_configuration.callbacks->alert) |
| 1785 | { |
| 1786 | m_configuration.callbacks->alert(m_configuration.callbackParam, type, param); |
| 1787 | } |
| 1788 | } |
| 1789 | |
| 1790 | int CCECClient::CallbackMenuStateChanged(const cec_menu_state newState) |
| 1791 | { |
nothing calls this directly
no outgoing calls
no test coverage detected