/* $NetBSD: lptvar.h,v 1.10 2008/04/28 20:23:56 martin Exp $ */
/*-
* Copyright (c) 2004 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Gary Thorpe.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/* #define LPINITRDY 4 wait up to 4 seconds for a ready
#define BUFSTATSIZE 32
#define LPTOUTINITIAL 10 initial timeout to wait for ready 1/10 s
#define LPTOUTMAX 1 maximal timeout 1 s */
#define LPPRI (PZERO+8)
#define BUFSIZE PAGE_SIZE
int sc_state;
/* bits for state */
#define OPEN (unsigned)(1<<0) /* device is open */
#define ASLP (unsigned)(1<<1) /* awaiting draining of printer */
#define EERROR (unsigned)(1<<2) /* error was received from printer */
#define OBUSY (unsigned)(1<<3) /* printer is busy doing output */
#define LPTOUT (unsigned)(1<<4) /* timeout while not selected */
#define TOUT (unsigned)(1<<5) /* timeout while not selected */
#define LPTINIT (unsigned)(1<<6) /* waiting to initialize for open */
#define INTERRUPTED (unsigned)(1<<7) /* write call was interrupted */
#define HAVEBUS (unsigned)(1<<8) /* the driver owns the bus */