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

Diff for /OpenXM_contrib2/asir2000/plot/plotg.c between version 1.3 and 1.7

version 1.3, 2000/08/22 05:04:32 version 1.7, 2002/07/29 03:08:16
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/asir2000/plot/plotg.c,v 1.2 2000/08/21 08:31:51 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/plot/plotg.c,v 1.6 2002/01/30 08:31:34 noro Exp $
 */  */
   
   /* XXX : declared in ox_plot_xevent.c on darwin */
   #if !defined(__DARWIN__)
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #include "ox.h"  #include "ox.h"
Line 57  int stream;
Line 60  int stream;
 DISPLAY *display;  DISPLAY *display;
 CURSOR normalcur,runningcur,errorcur;  CURSOR normalcur,runningcur,errorcur;
   
   #if defined(VISUAL)
   POINT start_point, end_point;
   SIZE cansize;
   #else
 Window rootwin;  Window rootwin;
 GC drawGC,dashGC,hlGC,scaleGC,clearGC,xorGC,colorGC;  GC drawGC,dashGC,hlGC,scaleGC,clearGC,xorGC,colorGC,cdrawGC;
 XFontStruct *sffs;  XFontStruct *sffs;
   #endif
   
 struct canvas *canvas[MAXCANVAS];  struct canvas *canvas[MAXCANVAS];
   struct canvas *closed_canvas[MAXCANVAS];
 struct canvas *current_can;  struct canvas *current_can;
   #endif

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.7

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