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

Function CecConfigCB

src/dotnetlib/CecSharpTypesUnmanaged.h:148–153  ·  view source on GitHub ↗

Called by libCEC to send back an updated configuration to the application Pointer to the callback struct The new configuration

Source from the content-addressed store, hash-verified

146 /// <param name="cbParam">Pointer to the callback struct</param>
147 /// <param name="config">The new configuration</param>
148 static void CecConfigCB(void* cbParam, const CEC::libcec_configuration* config)
149 {
150 struct UnmanagedCecCallbacks* cb = static_cast<struct UnmanagedCecCallbacks*>(cbParam);
151 if (!!cb && !!cb->configCB)
152 cb->configCB(config);
153 }
154
155 /// <summary>
156 /// Called by libCEC to send back an alert message to the application

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected