MCPcopy Create free account
hub / github.com/Pulse-Eight/libcec / CecLogMessageCB

Function CecLogMessageCB

src/dotnetlib/CecSharpTypesUnmanaged.h:112–117  ·  view source on GitHub ↗

Called by libCEC to send back a log message to the application Pointer to the callback struct The log message

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected