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

Diff for /OpenXM_contrib2/windows/engine2000/plot.c between version 1.4 and 1.5

version 1.4, 2002/07/10 06:08:26 version 1.5, 2002/08/02 02:48:22
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/windows/engine2000/plot.c,v 1.3 2001/10/09 01:36:29 noro Exp $   * $OpenXM: OpenXM_contrib2/windows/engine2000/plot.c,v 1.4 2002/07/10 06:08:26 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 72  extern char LastError[];
Line 72  extern char LastError[];
 void create_error(ERR *,unsigned int ,char *);  void create_error(ERR *,unsigned int ,char *);
   
 void ox_io_init();  void ox_io_init();
 void ox_asir_init(int,char **);  void ox_asir_init(int,char **,char *);
 Obj asir_pop_one();  Obj asir_pop_one();
 void asir_push_one(Obj);  void asir_push_one(Obj);
 void asir_end_flush();  void asir_end_flush();
Line 118  void ox_plot_main(int argc,char **argv)
Line 118  void ox_plot_main(int argc,char **argv)
         extern int plot_argc;          extern int plot_argc;
         extern char **plot_argv;          extern char **plot_argv;
   
         ox_asir_init(plot_argc,plot_argv);          ox_asir_init(plot_argc,plot_argv,"ox_plot");
         /* inform the watch thread of the completion of initialization */          /* inform the watch thread of the completion of initialization */
         SetEvent(hStreamNotify_Ack);          SetEvent(hStreamNotify_Ack);
 #else  #else
         ox_asir_init(argc,argv);          ox_asir_init(argc,argv,"ox_plot");
         init_plot_display(argc,argv);          init_plot_display(argc,argv);
         ds = ConnectionNumber(display);          ds = ConnectionNumber(display);
 #endif  #endif

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

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