| 203 | } |
| 204 | |
| 205 | static void CBCecSourceActivated(void* param, const CEC::cec_logical_address logicalAddress, const uint8_t activated) |
| 206 | { |
| 207 | PyGILState_STATE gstate = PyGILState_Ensure(); |
| 208 | CallPythonCallback(param, PYTHON_CB_SOURCE_ACTIVATED, |
| 209 | Py_BuildValue("(I,I)", logicalAddress, activated)); |
| 210 | PyGILState_Release(gstate); |
| 211 | } |
| 212 | |
| 213 | static void CBCecAlert(void* param, const libcec_alert alert, const libcec_parameter cbparam) |
| 214 | { |
nothing calls this directly
no outgoing calls
no test coverage detected