X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcecc.h;h=c069b140dbd75da2d65d9fbec2f6c5d8c44e581e;hb=8d84e2c0857878d0391aee40190919cf57d689e7;hp=1c9a987ac56d08f12e07ef287a7e7aa6b675a0fa;hpb=0e31a62c1ff3854f1c4dad3fb0917683c9528e5b;p=deb_libcec.git diff --git a/include/cecc.h b/include/cecc.h index 1c9a987..c069b14 100644 --- a/include/cecc.h +++ b/include/cecc.h @@ -175,13 +175,12 @@ extern DECLSPEC int cec_get_next_command(cec_command *command); /*! * @brief Transmit a frame on the CEC line. * @param data The frame to send. - * @param bWaitForAck Wait for an ACK message for 1 second after this frame has been sent. * @return True when the data was sent and acked, false otherwise. */ #ifdef __cplusplus -extern DECLSPEC int cec_transmit(const CEC::cec_command &data, int bWaitForAck = 1); +extern DECLSPEC int cec_transmit(const CEC::cec_command &data); #else -extern DECLSPEC int cec_transmit(const cec_command &data, int bWaitForAck = 1); +extern DECLSPEC int cec_transmit(const cec_command &data); #endif /*!