1 1.1 cgd /* $NetBSD: banner.h,v 1.1 1995/04/09 05:53:05 cgd Exp $ */ 2 1.1 cgd /* 3 1.1 cgd * Various defines needed for code lifted from lpd. 4 1.1 cgd * 5 1.1 cgd * @(#)Copyright (c) 1995, Simon J. Gerraty. 6 1.1 cgd * 7 1.1 cgd * This is free software. It comes with NO WARRANTY. 8 1.1 cgd * Permission to use, modify and distribute this source code 9 1.1 cgd * is granted subject to the following conditions. 10 1.1 cgd * 1/ that the above copyright notice and this notice 11 1.1 cgd * are preserved in all copies and that due credit be given 12 1.1 cgd * to the author. 13 1.1 cgd * 2/ that any changes to this code are clearly commented 14 1.1 cgd * as such so that the author does not get blamed for bugs 15 1.1 cgd * other than his own. 16 1.1 cgd * 17 1.1 cgd * Please send copies of changes and bug-fixes to: 18 1.1 cgd * sjg (at) zen.void.oz.au 19 1.1 cgd */ 20 1.1 cgd 21 1.1 cgd #define LINELEN 132 22 1.1 cgd #define BACKGND ' ' 23 1.1 cgd 24 1.1 cgd #ifdef LPD_CHSET 25 1.1 cgd #define HEIGHT 9 /* height of characters */ 26 1.1 cgd #define DROP 3 /* offset to drop characters with descenders */ 27 1.1 cgd #else 28 1.1 cgd #define HEIGHT 8 /* height of characters */ 29 1.1 cgd #define DROP 0 /* offset to drop characters with descenders */ 30 1.1 cgd #endif 31 1.1 cgd #define WIDTH 8 /* width of characters */ 32 1.1 cgd 33