X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=include%2Fcectypes.h;h=f50c8db3ff08a26dd072f59b1d152cc3904cc649;hb=dbe84b6e46f78b7bcabd8d7a72b5f2e10812c942;hp=9c3ffec8d188a19c1c64d6f66f1fed0e16bef79a;hpb=df312c6cd16286a770f3e9ae5f2ffa128c82a294;p=deb_libcec.git diff --git a/include/cectypes.h b/include/cectypes.h index 9c3ffec..f50c8db 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -1089,13 +1089,13 @@ typedef enum libcec_parameter_type CEC_PARAMETER_TYPE_UNKOWN } libcec_parameter_type; -struct libcec_parameter +typedef struct libcec_parameter { libcec_parameter_type paramType; /**< the type of this parameter */ void* paramData; /**< the value of this parameter */ -}; +} libcec_parameter; -struct libcec_configuration; +typedef struct libcec_configuration libcec_configuration; typedef int (CEC_CDECL* CBCecLogMessageType)(void *param, const cec_log_message &); typedef int (CEC_CDECL* CBCecKeyPressType)(void *param, const cec_keypress &); @@ -1219,7 +1219,7 @@ typedef enum cec_server_version CEC_SERVER_VERSION_1_9_0 = 0x1900 } cec_server_version; -typedef struct libcec_configuration +struct libcec_configuration { uint32_t clientVersion; /*!< the version of the client that is connecting */ char strDeviceName[13]; /*!< how to name the device on the CEC bus */ @@ -1345,7 +1345,7 @@ typedef struct libcec_configuration callbacks = NULL; } #endif -} libcec_configuration; +}; #ifdef __cplusplus };