X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=include%2Fcec.h;h=1701df786c16fe7489e356cf76e3ed157ded3f32;hb=4fb58ac466ff4c60c3796bbe5e62385320cf2f3d;hp=69f1941e8fdb77cd208cc8e68506f1d96b8dd397;hpb=8d84e2c0857878d0391aee40190919cf57d689e7;p=deb_libcec.git diff --git a/include/cec.h b/include/cec.h index 69f1941..1701df7 100644 --- a/include/cec.h +++ b/include/cec.h @@ -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; }; };