home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / quickplot / part2 / extern.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  1.2 KB  |  59 lines

  1. /* :set tabstop=4                                                    */
  2. /*
  3.  * $Header: extern.h,v 1.1 86/04/20 16:17:03 sysad Exp $
  4.  */
  5.  
  6. /*
  7.  * $Log:    extern.h,v $
  8.  * Revision 1.1  86/04/20  16:17:03  sysad
  9.  * Initial distribution version
  10.  * 
  11.  * 
  12.  */
  13.  
  14.  
  15. /* It is the intent of the author that this software may be distributed
  16.  * and used freely, without restriction.  If you make improvements or
  17.  * enhancements, I would appreciate a copy.
  18.  *
  19.  * Duane H. Hesser    Teltone Corporation
  20.  * ....uw-beaver!tikal!sysad
  21.  * ....uw-beaver!tikal!dhh
  22.  */
  23.  
  24. #include "defs.h"
  25. #include "io.h"
  26. extern char Row[][XARRAYSIZE];
  27. #ifndef QUICKPLOT
  28. extern char BIT[];
  29. #else
  30. extern char plotchar;
  31. extern int autowrap;
  32. #endif
  33.  
  34. extern double spacex,spacey;
  35. extern double xspace,yspace;
  36. extern double lowx_space,highx_space,lowy_space,highy_space;
  37. extern int maxx,maxy,maxrow,maxcol;
  38.  
  39. extern short curx,cury,curxdot,curydot;
  40. extern double Scalfac,xfac,yfac,argxfac,argyfac;
  41. extern double mapxfac,mapyfac;
  42. extern double Xmargin,Ymargin;
  43.  
  44. extern int Plotdata;
  45. extern int Eflag;
  46. extern int Nflag;
  47. extern int linemask;
  48.  
  49. extern char *Name;
  50. #ifdef DEBUG
  51. extern int debug;
  52. #endif
  53. extern int Rotate;
  54.  
  55. #ifndef QUICKPLOT
  56. extern int Npages;
  57. extern char table[][10];
  58. #endif
  59.