home *** CD-ROM | disk | FTP | other *** search
- #ifndef PRINTLIB_OPH
- #define PRINTLIB_OPH
-
- /* The destination argument to pprint: should be... */
-
- #define P_PRINT 0
- #define P_PREVIEW 1
-
- /* Styles to use with pprintl: */
-
- #ifndef P_STYLE_NORMAL
- #define P_STYLE_NORMAL $0000
- #define P_STYLE_UNDERLINE $0001
- #define P_STYLE_BOLD $0002
- #define P_STYLE_ITALIC $0004
- #define P_STYLE_SUPER $0008
- #define P_STYLE_SUB $0010
- #define P_STYLE_SANS_SERIF $4000
- #define P_STYLE_MONOSPACE $8000
- #endif
-
- /* Print setup for use with pgetset%: & pset: */
-
- STRUCT P_SETUP
- model%
- name$(128+2)
- params%
- header$(255)
- footer$(255)
- ENDS
-
- /* Argiment to pgethd$ - header or footer */
-
- #define P_HDR_TOP 0
- #define P_HDR_BOT 1
-
- #endif
-