home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************\
- *
- * PVCS Software Configuration Management Control Information
- *
- * PRINTS.H
- *
- * $Revision: 1.2 $
- *
- * $Date: 19 Apr 1988 11:01:04 $
- *
- * $Author: BOBG $
- *
- * $Logfile: F:/PUBLIC/421/WORK/INCLUDE/PRINTS.H_V $
- *
- * $Log: F:/PUBLIC/421/WORK/INCLUDE/PRINTS.H_V $
-
- Rev 1.2 19 Apr 1988 11:01:04 BOBG
- add dlg IDs, expand PRINTER struct
-
- Rev 1.1 05 Apr 1988 17:23:08 BOBG
- print options revised
-
- Rev 1.0 21 Mar 1988 16:20:12 tomh
- Initial revision.
- *
- \***************************************************************************/
-
- /* file PRINTS.H print setups */
-
- #define ID_PRINTENTIRE 20
- #define ID_PRINTCURRPART 21
- #define ID_DRAFTQUAL 22
- #define ID_EXPORTQUAL 23
- #define ID_FINALQUAL 24
- #define ID_POSITIVEPOL 25
- #define ID_NEGATIVEPOL 26
- #define ID_POSPAPERREPRO 27
- #define ID_FLOPFILMNEG 28
- #define ID_POSPAPERPLATE 29
- #define ID_FORMATQCBAR 30
- #define ID_FORMATCROPM 31
- #define ID_FORMATBOX 32
- #define ID_BOXTHIN 33
- #define ID_BOXMED 34
- #define ID_BOXTHICK 35
- #define ID_NORMALGRAY 36
- #define ID_LIGHTENGRAY 37
- #define ID_DARKENGRAY 38
- #define ID_COMPRESSGRAY 39
- #define ID_SCRNHALFTONE 40
- #define ID_SCRNLINE 41
- #define ID_SCRNWAVYLINE 42
- #define ID_SCRNMEZZOTINT 43
- #define ID_SCREENANGL 44
- #define ID_SCREENFREQ 45
- #define ID_DATABINARY 46
- #define ID_DATAASCII 47
-
- #define LASERWR 0
- #define LINO100 1
- #define LINO300 2
- #define VARITYP 3
-
- #define PRNAMELENGTH 18
- typedef struct {
- char strPrinter[PRNAMELENGTH];
- int outptPolarity;
- int grayExpan;
- int screenPatt;
- int screenAngl;
- int screenFreq;
- int deviceRot;
- int deviceRes;
- int exportQual;
- int formatQCBar;
- int formatCropM;
- int formatBox;
- int imageData;
- } PRINTER;
-
-