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

version 1.1.1.1.2.4, 2010/04/20 11:48:49 version 1.1.1.1.2.5, 2010/04/20 12:09:48
Line 74  inline void cliComp(cli_Completion_t *cmdComplete, cli Line 74  inline void cliComp(cli_Completion_t *cmdComplete, cli
 */  */
 int cliExec(cliCommands_t *cmdList, const char *csPrompt);  int cliExec(cliCommands_t *cmdList, const char *csPrompt);
   
   /*
    * cli_ReadHistory() Read CLI History from file
    * @csFile = history file name, if NULL default history name is ".aitcli.history"
    * return: -1 error; != -1 readed ok
   */
   inline int cli_ReadHistory(const char *csFile);
   /*
    * cli_WriteHistory() Write CLI History to file
    * @csFile = history file name, if NULL default history name is ".aitcli.history"
    * return: -1 error; != -1 readed ok
   */
   inline int cli_WriteHistory(const char *csFile);
   
   
 /*  /*
  * cli_PrintHelp() Helper print for missing command arguments   * cli_PrintHelp() Helper print for missing command arguments

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


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