Diff for /libaitcli/inc/aitcli.h between versions 1.1.1.1.2.5 and 1.2

version 1.1.1.1.2.5, 2010/04/20 12:09:48 version 1.2, 2010/06/04 11:32:47
Line 37  inline const char *cli_GetError(); Line 37  inline const char *cli_GetError();
 inline int cli_Printf(FILE *out, const char *csFormat, ...);  inline int cli_Printf(FILE *out, const char *csFormat, ...);
   
 /*  /*
  * cliInit() Initialize Readline  
  * @csProg = program name  
  * return: none  
 */  
 inline void cliInit(const char *csProg);  
 /*  
  * cliNetInit() Initialize Readline if CLI bind to socket   * cliNetInit() Initialize Readline if CLI bind to socket
  * @csProg = program name   * @csProg = program name
  * @pty = Master pty   * @pty = Master pty
Line 73  inline void cliComp(cli_Completion_t *cmdComplete, cli Line 67  inline void cliComp(cli_Completion_t *cmdComplete, cli
  * return: -1 error, 0 = exit w/^+D, 1 done.   * return: -1 error, 0 = exit w/^+D, 1 done.
 */  */
 int cliExec(cliCommands_t *cmdList, const char *csPrompt);  int cliExec(cliCommands_t *cmdList, const char *csPrompt);
   /*
    * cliNetExec() Execute net CLI main loop
    * @cmdList = Commands list
    * @csPrompt = Prompt text
    * @sock = client socket
    * @term = stdin termios
    * @win = window size of tty
    * return: -1 error, 0 = exit w/^+D, 1 done.
   */
   int cliNetExec(cliCommands_t *cmdList, const char *csPrompt, int sock, struct termios *term, struct winsize *win);
   
 /*  /*
  * cli_ReadHistory() Read CLI History from file   * cli_ReadHistory() Read CLI History from file
Line 83  inline int cli_ReadHistory(const char *csFile); Line 87  inline int cli_ReadHistory(const char *csFile);
 /*  /*
  * cli_WriteHistory() Write CLI History to file   * cli_WriteHistory() Write CLI History to file
  * @csFile = history file name, if NULL default history name is ".aitcli.history"   * @csFile = history file name, if NULL default history name is ".aitcli.history"
    * @lineNum = save number of history entry lines, if -1 all lines saved without limit
  * return: -1 error; != -1 readed ok   * return: -1 error; != -1 readed ok
 */  */
inline int cli_WriteHistory(const char *csFile);inline int cli_WriteHistory(const char *csFile, int lineNum);
   
   
 /*  /*

Removed from v.1.1.1.1.2.5  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>