13680Sroot /* 222442Sdist * Copyright (c) 1983 Regents of the University of California. 334203Sbostic * All rights reserved. 422442Sdist * 5*42801Sbostic * %sccs.include.redist.c% 634203Sbostic * 7*42801Sbostic * @(#)lp.local.h 5.5 (Berkeley) 06/01/90 822442Sdist */ 922442Sdist 1022442Sdist /* 113680Sroot * Possibly, local parameters to the spooling system 123680Sroot */ 133680Sroot 143680Sroot /* 153680Sroot * Magic number mapping for binary files, used by lpr to avoid 163680Sroot * printing objects files. 173680Sroot */ 183680Sroot 193680Sroot #include <a.out.h> 203680Sroot #include <ar.h> 213680Sroot 223680Sroot #ifndef A_MAGIC1 /* must be a VM/UNIX system */ 233680Sroot # define A_MAGIC1 OMAGIC 243680Sroot # define A_MAGIC2 NMAGIC 253680Sroot # define A_MAGIC3 ZMAGIC 263680Sroot # undef ARMAG 273680Sroot # define ARMAG 0177545 283680Sroot #endif 293680Sroot 303680Sroot /* 313680Sroot * Defaults for line printer capabilities data base 323680Sroot */ 333680Sroot #define DEFLP "lp" 343680Sroot #define DEFLOCK "lock" 3510190Sralph #define DEFSTAT "status" 363680Sroot #define DEFMX 1000 3713170Sralph #define DEFMAXCOPIES 0 383680Sroot #define DEFFF "\f" 3910863Sralph #define DEFWIDTH 132 4010863Sralph #define DEFLENGTH 66 4110190Sralph #define DEFUID 1 423680Sroot 433680Sroot /* 443680Sroot * When files are created in the spooling area, they are normally 453680Sroot * readable only by their owner and the spooling group. If you 463680Sroot * want otherwise, change this mode. 473680Sroot */ 483680Sroot #define FILMOD 0660 493680Sroot 503680Sroot /* 513680Sroot * Printer is assumed to support LINELEN (for block chars) 523680Sroot * and background character (blank) is a space 533680Sroot */ 543680Sroot #define LINELEN 132 553680Sroot #define BACKGND ' ' 563680Sroot 573680Sroot #define HEIGHT 9 /* height of characters */ 583680Sroot #define WIDTH 8 /* width of characters */ 593680Sroot #define DROP 3 /* offset to drop characters with descenders */ 6012126Sralph 6112126Sralph /* 6212126Sralph * Define TERMCAP if the terminal capabilites are to be used for lpq. 6312126Sralph */ 6412126Sralph #define TERMCAP 6512126Sralph 6612126Sralph /* 6712126Sralph * Maximum number of user and job requests for lpq and lprm. 6812126Sralph */ 6912126Sralph #define MAXUSERS 50 7012126Sralph #define MAXREQUESTS 50 71