| 616 | /// <returns>True when this CEC adapter can save the user configuration, false otherwise.</returns> |
| 617 | #if CEC_LIB_VERSION_MAJOR >= 5 |
| 618 | bool CanSaveConfiguration(void) |
| 619 | { |
| 620 | return !!m_libCec && |
| 621 | m_libCec->CanSaveConfiguration(); |
| 622 | } |
| 623 | #else |
| 624 | bool CanPersistConfiguration(void) |
| 625 | { |
nothing calls this directly
no test coverage detected