home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / include / local / epson.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  589 b   |  20 lines

  1. /*
  2.  *    epson.h -- header for Epson printer control functions
  3.  */
  4.  
  5. /* ASCII codes used for Epson MX/FX-series printer control */
  6. #define DC2    18    /* cancel condensed type mode */
  7. #define DC4    20    /* cancel expanded type mode */
  8. #define ESC    27    /* signal start of printer control sequences */
  9. #define FF    12    /* top of page next page */
  10. #define SO    14    /* start expanded type mode */
  11. #define SI    15    /* start condensed type mode */
  12.  
  13. /* font types */
  14. #define NORMAL        0x00
  15. #define CONDENSED    0x01
  16. #define DOUBLE        0x02
  17. #define    EMPHASIZED    0x04
  18. #define EXPANDED    0x08
  19. #define ITALICS        0x10
  20.