| 219 | } |
| 220 | |
| 221 | static void CBCecConfigurationChanged(void* param, const libcec_configuration* configuration) |
| 222 | { |
| 223 | PyGILState_STATE gstate = PyGILState_Ensure(); |
| 224 | CallPythonCallback(param, PYTHON_CB_CONFIGURATION, |
| 225 | Py_BuildValue("(I)", configuration)); |
| 226 | PyGILState_Release(gstate); |
| 227 | } |
| 228 | |
| 229 | static int CBCecCommandHandler(void* param, const CEC::cec_command* command) |
| 230 | { |
nothing calls this directly
no outgoing calls
no test coverage detected