[BACK]Return to plot.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot

Diff for /OpenXM_contrib/gnuplot/Attic/plot.h between version 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2000/01/22 14:15:55 version 1.1.1.3, 2003/09/15 07:09:23
Line 83  typedef int TBOOLEAN;
Line 83  typedef int TBOOLEAN;
 /* double true, used in autoscale: 1=autoscale ?min, 2=autoscale ?max */  /* double true, used in autoscale: 1=autoscale ?min, 2=autoscale ?max */
 #define DTRUE 3  #define DTRUE 3
   
 #define Pi 3.141592653589793  #define DEG2RAD (M_PI / 180.0)
 #define DEG2RAD (Pi / 180.0)  
   
   
 /* minimum size of points[] in curve_points */  /* minimum size of points[] in curve_points */
Line 131  typedef int TBOOLEAN;
Line 130  typedef int TBOOLEAN;
 #define LEVELS_AUTO             0               /* How contour levels are set */  #define LEVELS_AUTO             0               /* How contour levels are set */
 #define LEVELS_INCREMENTAL      1               /* user specified start & incremnet */  #define LEVELS_INCREMENTAL      1               /* user specified start & incremnet */
 #define LEVELS_DISCRETE         2               /* user specified discrete levels */  #define LEVELS_DISCRETE         2               /* user specified discrete levels */
 #define MAX_DISCRETE_LEVELS   30  
   
 #define ANGLES_RADIANS  0  #define ANGLES_RADIANS  0
 #define ANGLES_DEGREES  1  #define ANGLES_DEGREES  1
Line 345  typedef RETSIGTYPE (*sigfunc)__PROTO((int));
Line 343  typedef RETSIGTYPE (*sigfunc)__PROTO((int));
 typedef RETSIGTYPE (*sigfunc)__PROTO((void));  typedef RETSIGTYPE (*sigfunc)__PROTO((void));
 #endif  #endif
   
   /* HBB 20010720: removed 'sortfunc' --- it's no longer used */
 #ifndef SORTFUNC_ARGS  #ifndef SORTFUNC_ARGS
 typedef int (*sortfunc) __PROTO((const generic *, const generic *));  # define SORTFUNC_ARGS const generic *
 #else  
 typedef int (*sortfunc) __PROTO((SORTFUNC_ARGS, SORTFUNC_ARGS));  
 #endif  #endif
   
 enum operators {  enum operators {
Line 733  extern TBOOLEAN interactive;
Line 730  extern TBOOLEAN interactive;
 extern char *infile_name;  extern char *infile_name;
 extern struct udft_entry *dummy_func;  extern struct udft_entry *dummy_func;
 extern char dummy_var[MAX_NUM_VAR][MAX_ID_LEN+1];       /* from setshow.c */  extern char dummy_var[MAX_NUM_VAR][MAX_ID_LEN+1];       /* from setshow.c */
   
   /* From version.c */
   extern char gnuplot_version[];
   extern char gnuplot_patchlevel[];
   extern char gnuplot_date[];
   extern char gnuplot_copyright[];
   extern char faq_location[];
   extern char bug_email[];
   extern char help_email[];
   extern char os_name[];
   extern char os_rel[];
   
 /* Windows needs to redefine stdin/stdout functions */  /* Windows needs to redefine stdin/stdout functions */
 #if defined(_Windows) && !defined(WINDOWS_NO_GUI)  #if defined(_Windows) && !defined(WINDOWS_NO_GUI)

Legend:
Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3

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