| 211 | } |
| 212 | |
| 213 | static void CBCecAlert(void* param, const libcec_alert alert, const libcec_parameter cbparam) |
| 214 | { |
| 215 | PyGILState_STATE gstate = PyGILState_Ensure(); |
| 216 | CallPythonCallback(param, PYTHON_CB_ALERT, |
| 217 | Py_BuildValue("(I,I)", alert, cbparam)); |
| 218 | PyGILState_Release(gstate); |
| 219 | } |
| 220 | |
| 221 | static void CBCecConfigurationChanged(void* param, const libcec_configuration* configuration) |
| 222 | { |
nothing calls this directly
no outgoing calls
no test coverage detected