| 194 | } |
| 195 | |
| 196 | static int CBCecMenuStateChanged(void* param, const CEC::cec_menu_state state) |
| 197 | { |
| 198 | PyGILState_STATE gstate = PyGILState_Ensure(); |
| 199 | int retval = CallPythonCallback(param, PYTHON_CB_MENU_STATE, |
| 200 | Py_BuildValue("(I)", state)); |
| 201 | PyGILState_Release(gstate); |
| 202 | return retval; |
| 203 | } |
| 204 | |
| 205 | static void CBCecSourceActivated(void* param, const CEC::cec_logical_address logicalAddress, const uint8_t activated) |
| 206 | { |
nothing calls this directly
no outgoing calls
no test coverage detected