| 669 | } |
| 670 | |
| 671 | bool CCECClient::SendSetOSDString(const cec_logical_address iLogicalAddress, const cec_display_control duration, const char *strMessage) |
| 672 | { |
| 673 | CCECBusDevice *primary = GetPrimaryDevice(); |
| 674 | if (primary) |
| 675 | return primary->TransmitOSDString(iLogicalAddress, duration, strMessage, false); |
| 676 | |
| 677 | return false; |
| 678 | } |
| 679 | |
| 680 | cec_version CCECClient::GetDeviceCecVersion(const cec_logical_address iAddress) |
| 681 | { |
no test coverage detected