X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=include%2Fcec.h;h=1701df786c16fe7489e356cf76e3ed157ded3f32;hb=465ab2f15fbb14a26f0f7a3139e0fe981fabc8f0;hp=63564555564dfb46bbf64f8efc280c38d2a00d1e;hpb=8b7e5ff605864004b8a66520202bf05aecb4fc6c;p=deb_libcec.git diff --git a/include/cec.h b/include/cec.h index 6356455..1701df7 100644 --- a/include/cec.h +++ b/include/cec.h @@ -98,7 +98,7 @@ namespace CEC /*! * @see cec_transmit */ - virtual bool Transmit(const cec_command &data, bool bWaitForAck = true) = 0; + virtual bool Transmit(const cec_command &data) = 0; /*! * @see cec_set_logical_address @@ -139,6 +139,26 @@ namespace CEC * @see cec_switch_monitoring */ virtual bool SwitchMonitoring(bool bEnable) = 0; + + /*! + * @see cec_get_device_cec_version + */ + virtual cec_version GetDeviceCecVersion(cec_logical_address iAddress) = 0; + + /*! + * @see cec_get_device_menu_language + */ + virtual bool GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language) = 0; + + /*! + * @see cec_get_device_vendor_id + */ + virtual uint64_t GetDeviceVendorId(cec_logical_address iAddress) = 0; + + /*! + * @see cec_get_device_power_status + */ + virtual cec_power_status GetDevicePowerStatus(cec_logical_address iAddress) = 0; }; };