cli_inter_actor.h 367 B

123456789101112131415161718
  1. #ifndef __CLI_INTER_ACTOR_H
  2. #define __CLI_INTER_ACTOR_H
  3. #include "cli_inter_preter.h"
  4. #define CLI_ITT_LIST_NUM 10 // 历史记录命令个数
  5. #define CLI_ITT_LIST_LEN CLI_IPT_ARG_STR_LEN // 每个命令的最大长度
  6. typedef enum
  7. {
  8. CLI_CHL_COM = 0,
  9. CLI_CHL_TELNET,
  10. } CLI_CHL;
  11. extern void cli_itt_input(CLI_CHL chl, char c);
  12. #endif // __CLI_INTERACTOR_H