home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource3 / 126_01 / hiplot.h < prev    next >
Text File  |  1985-03-11  |  1KB  |  64 lines

  1. /*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
  2. /* Header file for HIPLOT.C */
  3.  
  4. #include <bdscio.h>
  5. #include "bdscio+.h"
  6.  
  7. /*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
  8. /* The following may be modified to be compatible with the calling
  9. program: */
  10.  
  11. char Buf[MAXLINE];
  12.  
  13. /*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
  14. /* Needed for repeat capability */
  15.  
  16. #define REBUF 4000
  17.  
  18. char Buf_repeat[REBUF], *At_repeat;
  19. int Fill_repeat;
  20.  
  21. /*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
  22. #define HORIZONTAL 1
  23. #define VERTICAL 4
  24. #define VTOT 2000
  25. #define HTOT 1480
  26.  
  27. int Xflag;
  28.  
  29. /* CHARACTER VARIABLES FOR AXIS LABELS */
  30.  
  31. int    Cvect,    /* direction to write 1-4 */
  32.     Csize,    /* current letter size 1-5 */
  33.     Cheight[6],
  34.     Cwidth[6],
  35.     Cbetlin[6],    /* height between lines */
  36.     Cthick[6];    /* thickness of each size */
  37.  
  38. char Hlabel[40],
  39.     Vlabel[40];
  40.  
  41. int    Vmin,
  42.     Vmax,
  43.     Hmin,
  44.     Hmax,
  45.     Xmin,
  46.     Xmax,
  47.     Ymin,
  48.     Ymax,
  49.     Vdel,
  50.     Hdel,
  51.     Xdel,
  52.     Ydel,
  53.     Hold,
  54.     Vold,
  55.     Hold_origin,
  56.     Vold_origin,
  57.     Hat,
  58.     Vat,
  59.     Hsafe,
  60.     Vsafe,
  61.     Plot_thickness,
  62.     Offset;
  63. /*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
  64.  The following may be