X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcecc.h;h=8c9bc932b82907edcf8936c6f45d31bde95bff6d;hb=75394e02e9e569d2f65d1f4a9f5a2a18b9b282cc;hp=37bccc187b23aefc856d4dac18d4a32ad6b3cf61;hpb=f71a1df9ac5b73127eb05aa0abe6063a05b0271d;p=deb_libcec.git diff --git a/include/cecc.h b/include/cecc.h index 37bccc1..8c9bc93 100644 --- a/include/cecc.h +++ b/include/cecc.h @@ -59,6 +59,12 @@ extern DECLSPEC int cec_open(const char *strPort, uint32_t iTimeout); extern DECLSPEC void cec_close(void); +#ifdef __cplusplus +extern DECLSPEC int cec_enable_callbacks(void *cbParam, CEC::ICECCallbacks *callbacks); +#else +extern DECLSPEC int cec_enable_callbacks(void *cbParam, ICECCallbacks *callbacks); +#endif + #ifdef __cplusplus extern DECLSPEC int8_t cec_find_adapters(CEC::cec_adapter *deviceList, uint8_t iBufSize, const char *strDevicePath); #else @@ -227,11 +233,11 @@ extern DECLSPEC int cec_set_hdmi_port(CEC::cec_logical_address iBaseDevice, uint extern DECLSPEC int cec_set_hdmi_port(cec_logical_address iBaseDevice, uint8_t iPort); #endif -extern DECLSPEC int cec_volume_up(int bWait); +extern DECLSPEC int cec_volume_up(int bSendRelease); -extern DECLSPEC int cec_volume_down(int bWait); +extern DECLSPEC int cec_volume_down(int bSendRelease); -extern DECLSPEC int cec_mute_audio(int bWait); +extern DECLSPEC int cec_mute_audio(int bSendRelease); #ifdef __cplusplus extern DECLSPEC int cec_send_keypress(CEC::cec_logical_address iDestination, CEC::cec_user_control_code key, int bWait);