Called by libCEC to send back an updated configuration to the application Pointer to the callback struct The new configuration
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected