enum rcf_var_type_t
Overview
Parameter and variable types. More…
#include <rcf_common.h> enum rcf_var_type_t { RCF_INT8 = 0, RCF_UINT8, RCF_INT16, RCF_UINT16, RCF_INT32, RCF_UINT32, RCF_INT64, RCF_UINT64, RCF_STRING, RCF_TYPE_TOTAL, };
Detailed Documentation
Parameter and variable types.
Corresponding integer values must start from 0 and be continuos, since they are used as indexes for rcf_types[] and rcf_type_len[] arrays from te_proto.h
.
Enum Values
RCF_INT8
int8_t
RCF_UINT8
uint8_t
RCF_INT16
int16_t
RCF_UINT16
uint16_t
RCF_INT32
int32_t
RCF_UINT32
uint32_t
RCF_INT64
int64_t
RCF_UINT64
uint64_t
RCF_STRING
char *
RCF_TYPE_TOTAL
total number of RCF types