diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2007-06-01 21:18:30 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2007-06-01 21:18:30 +0000 |
commit | 84668a0a773b86a10f0d0b9604d0f0e2a89d9713 (patch) | |
tree | a45008b85fe86ec89433ccae63fa71ca55fbfe13 /sys | |
parent | d3713db5cf024ad03207119177a84390f373580e (diff) |
wipe tablet.h that was used by tb(4) that was
removed months ago; ok deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/tablet.h | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/sys/sys/tablet.h b/sys/sys/tablet.h deleted file mode 100644 index fa4d4d4aa41..00000000000 --- a/sys/sys/tablet.h +++ /dev/null @@ -1,93 +0,0 @@ -/* $OpenBSD: tablet.h,v 1.3 2003/06/02 23:28:22 millert Exp $ */ -/* $NetBSD: tablet.h,v 1.10 1996/02/09 18:25:43 christos Exp $ */ - -/*- - * Copyright (c) 1985, 1986, 1993 - * The Regents of the University of California. All rights reserved. - * - * 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. - * 3. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. - * - * @(#)tablet.h 8.3 (Berkeley) 1/4/94 - */ - -#ifndef _SYS_TABLET_H_ -#define _SYS_TABLET_H_ - -/* - * Tablet line discipline. - */ -#include <sys/ioctl.h> - -/* - * Reads on the tablet return one of the following structures, depending on - * the underlying tablet type. The first two are defined such that a read of - * sizeof (gtcopos) on a non-gtco tablet will return meaningful info. The - * in-proximity bit is simulated where the tablet does not directly provide - * the information. - */ -struct hitpos { - int32_t xpos, ypos; /* raw x-y coordinates */ - int16_t status; /* buttons/pen down */ -#define TBINPROX 0100000 /* pen in proximity of tablet */ - int16_t scount; /* sample count */ -}; - -struct gtcopos { - int32_t xpos, ypos; /* raw x-y coordinates */ - int16_t status; /* as above */ - int16_t scount; /* sample count */ - int16_t xtilt, ytilt; /* raw tilt */ - int16_t pressure; - int16_t pad; /* pad to 32-bit boundary */ -}; - -struct polpos { - int16_t p_x, p_y, p_z; /* raw 3-space coordinates */ - int16_t p_azi, p_pit, p_rol; /* azimuth, pitch, and roll */ - int16_t p_stat; /* status, as above */ - char p_key; /* calculator input keyboard */ -}; - -#define BIOSMODE _IOW('b', 1, int) /* set mode bit(s) */ -#define BIOGMODE _IOR('b', 2, int) /* get mode bit(s) */ -#define TBMODE 0xfff0 /* mode bits: */ -#define TBPOINT 0x0010 /* single point */ -#define TBRUN 0x0000 /* runs contin. */ -#define TBSTOP 0x0020 /* shut-up */ -#define TBGO 0x0000 /* ~TBSTOP */ -#define TBTYPE 0x000f /* tablet type: */ -#define TBUNUSED 0x0 -#define TBHITACHI 0x1 /* hitachi tablet */ -#define TBTIGER 0x2 /* hitachi tiger */ -#define TBGTCO 0x3 /* gtco */ -#define TBPOL 0x4 /* polhemus 3space */ -#define TBHDG 0x5 /* hdg-1111b, low res */ -#define TBHDGHIRES 0x6 /* hdg-1111b, high res */ -#define TBDIGI 0x7 /* gtco digi-pad, low res */ -#define TBDIGIHIRES 0x8 /* gtco digi-pad, high res */ -#define BIOSTYPE _IOW('b', 3, int) /* set tablet type */ -#define BIOGTYPE _IOR('b', 4, int) /* get tablet type*/ - -#endif /* !_SYS_TABLET_H_ */ |