1 /*
2  * Copyright (C) 2015-2017 Alibaba Group Holding Limited
3  */
4 
5 #ifndef CLI_UAGENT_H
6 #define CLI_UAGENT_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #include "uagent.h"
13 
14 #define MOD_VER "1.0.0"
15 #define CLI_RESPONE   (UAGENT_FUNC_USER_BASE)
16 #define CLI_CMD_INPUT (UAGENT_FUNC_USER_BASE + 1)
17 
18 extern unsigned char g_cmd_from_cloud;
19 
20 void cli_uagent_init(void);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif /* CLI_UAGENT_H */
27 
28