Called by libCEC to send back a log message to the application Pointer to the callback struct The log message
| 110 | /// <param name="cbParam">Pointer to the callback struct</param> |
| 111 | /// <param name="message">The log message</param> |
| 112 | static void CecLogMessageCB(void* cbParam, const CEC::cec_log_message* message) |
| 113 | { |
| 114 | struct UnmanagedCecCallbacks* cb = static_cast<struct UnmanagedCecCallbacks*>(cbParam); |
| 115 | if (!!cb && !!cb->logCB) |
| 116 | cb->logCB(message); |
| 117 | } |
| 118 | |
| 119 | /// <summary> |
| 120 | /// Called by libCEC to send back a key press or release to the application |
nothing calls this directly
no outgoing calls
no test coverage detected