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