| 141 | } |
| 142 | |
| 143 | void DisableCallbacks(void) |
| 144 | { |
| 145 | if (!!m_libCec) |
| 146 | { |
| 147 | #if CEC_LIB_VERSION_MAJOR >= 5 |
| 148 | m_libCec->DisableCallbacks(); |
| 149 | #else |
| 150 | m_libCec->EnableCallbacks(nullptr, nullptr); |
| 151 | #endif |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | /// <summary> |
| 156 | /// Sends a ping command to the adapter, to check if it's responding. |
nothing calls this directly
no test coverage detected