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