[BACK]Return to io.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / asir32gui

Diff for /OpenXM_contrib2/windows/asir32gui/io.c between version 1.4 and 1.5

version 1.4, 2005/10/19 06:22:59 version 1.5, 2009/08/25 08:01:03
Line 259  void read_and_insert()
Line 259  void read_and_insert()
         }          }
 }  }
   
   static char history_path[BUFSIZ];
   static char history_errmsg[BUFSIZ];
   
 void init_input_history()  void init_input_history()
 {  {
           char rootdir[BUFSIZ];
           get_rootdir(rootdir,sizeof(rootdir),history_errmsg);
           sprintf(history_path,"%s\\bin\\%s",rootdir,HISTORY);
         init_hist(MAXHIST);          init_hist(MAXHIST);
 }  }
   
 void write_input_history()  void write_input_history()
 {  {
         write_hist(HISTORY);          write_hist(history_path);
 }  }
   
 void read_input_history()  void read_input_history()
 {  {
         read_hist(HISTORY);          read_hist(history_path);
 }  }
   
 void send_intr() {  void send_intr() {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

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