X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=include%2Fcectypes.h;h=f2b2f02b3c9c49fc4060474833ef792fdc49a7f7;hb=3fd2a2b89c3f6f9d8e28c19e45622386a981ef8d;hp=7bce7e2bb75a63bf750d697d2358a04e2f564eca;hpb=ae693aaa8545b853946bf490dd0444c5862bafb9;p=deb_libcec.git diff --git a/include/cectypes.h b/include/cectypes.h index 7bce7e2..f2b2f02 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -71,7 +71,7 @@ namespace CEC { #define CEC_MIN_LIB_VERSION 1 #define CEC_LIB_VERSION_MAJOR 1 -#define CEC_LIB_VERSION_MINOR 2 +#define CEC_LIB_VERSION_MINOR 3 typedef enum cec_abort_reason { @@ -699,7 +699,6 @@ typedef struct cec_command cec_datapacket parameters; int8_t opcode_set; int32_t transmit_timeout; - int8_t retries; #ifdef __cplusplus cec_command &operator =(const struct cec_command &command) @@ -712,7 +711,6 @@ typedef struct cec_command opcode_set = command.opcode_set; transmit_timeout = command.transmit_timeout; parameters = command.parameters; - retries = command.retries; return *this; } @@ -755,7 +753,6 @@ typedef struct cec_command opcode_set = 0; opcode = CEC_OPCODE_FEATURE_ABORT; transmit_timeout = CEC_DEFAULT_TRANSMIT_TIMEOUT; - retries = CEC_DEFAULT_TRANSMIT_RETRIES; parameters.Clear(); }; #endif