diff --git a/easyflash/plugins/types/README.md b/easyflash/plugins/types/README.md index c377465..9f70741 100644 --- a/easyflash/plugins/types/README.md +++ b/easyflash/plugins/types/README.md @@ -36,7 +36,7 @@ ef_types_init(&s2jHook); 对于基本类型的环境变量操作方法与 EasyFlash 原有的 API 一致,只是修改了入参及出参的类型,所有可用的 API 如下: -``` +```C bool ef_get_bool(const char *key); char ef_get_char(const char *key); short ef_get_short(const char *key); diff --git a/easyflash/plugins/types/ef_types.h b/easyflash/plugins/types/ef_types.h index 17c87c9..cd0c79e 100644 --- a/easyflash/plugins/types/ef_types.h +++ b/easyflash/plugins/types/ef_types.h @@ -33,6 +33,9 @@ #include #include "struct2json\inc\s2j.h" +/* EasyLogger flash log plugin's software version number */ +#define EF_TYPES_SW_VERSION "0.02.22" + typedef cJSON *(*ef_types_set_cb)(void* struct_obj); typedef void *(*ef_types_get_cb)(cJSON* json_obj);