Files
Wataru Ishida 7246caa3d1 meta: support deserializing empty list
Signed-off-by: Wataru Ishida <wataru.ishid@gmail.com>
2022-01-19 18:46:43 +09:00

28 lines
478 B
C

#ifndef __TAI_BASIC_MODULE__
#define __TAI_BASIC_MODULE__
#include <tai.h>
typedef enum _basic_module_attr_t
{
/**
* @brief Custom attribute example
*
* @type bool
* @flags CREATE_AND_SET
*/
TAI_MODULE_ATTR_CUSTOM = TAI_MODULE_ATTR_CUSTOM_RANGE_START,
/**
* @brief Custom list attribute example
*
* @type tai_u32_list_t
* @flags CREATE_AND_SET
*/
TAI_MODULE_ATTR_CUSTOM_LIST,
} basic_module_attr_t;
#endif