Get the CEC version of the device with the given logical address The logical address of the device to get the CEC version for. The version or CEC_VERSION_UNKNOWN when the version couldn't be fetched.
| 330 | /// <param name="logicalAddress">The logical address of the device to get the CEC version for.</param> |
| 331 | /// <returns>The version or CEC_VERSION_UNKNOWN when the version couldn't be fetched.</returns> |
| 332 | CecVersion GetDeviceCecVersion(CecLogicalAddress logicalAddress) |
| 333 | { |
| 334 | if (!m_libCec) { |
| 335 | return CecVersion::Unknown; |
| 336 | } |
| 337 | return (CecVersion) m_libCec->GetDeviceCecVersion((cec_logical_address) logicalAddress); |
| 338 | } |
| 339 | |
| 340 | /// <summary> |
| 341 | /// Get the menu language of the device with the given logical address |
nothing calls this directly
no test coverage detected