X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=include%2Fcec.h;h=5ef202635c97b6ef179c60e8674f77448d18912b;hb=a4675846959db9180b8a4898919afeb9038529d7;hp=63564555564dfb46bbf64f8efc280c38d2a00d1e;hpb=8b7e5ff605864004b8a66520202bf05aecb4fc6c;p=deb_libcec.git diff --git a/include/cec.h b/include/cec.h index 6356455..5ef2026 100644 --- a/include/cec.h +++ b/include/cec.h @@ -80,6 +80,11 @@ namespace CEC */ virtual int8_t GetLibVersion(void) = 0; + /*! + * @see cec_get_lib_version + */ + virtual int8_t GetLibVersionMinor(void) = 0; + /*! * @see cec_get_next_log_message */ @@ -98,7 +103,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 +144,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; }; };