home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 315_01 / hpgl.h < prev    next >
C/C++ Source or Header  |  1990-05-16  |  398b  |  14 lines

  1.  
  2. #ifndef HPGL_H
  3. #define HPGL_H
  4.  
  5. #define STRING_TERM_CHAR '\003'    /* default char for string termination */
  6.                    /* on hp plotter */
  7. #define INIT_STRING "\033.(;IN;PU;PU;SP1;LT;PU;PU;"   /* initialization string */
  8.                         /* for hp plotter */
  9.  
  10. void hpgl_init(), hpgl_startline(), hpgl_line(), hpgl_endline();
  11. void hpgl_label(), hpgl_moveto(), hpgl_selectpen(), hpgl_write();
  12.  
  13. #endif
  14.