xref: /csrg-svn/sys/news3400/bm/bitmapif.h (revision 53889)
1*53889Smckusick /*
2*53889Smckusick  * Copyright (c) 1992 The Regents of the University of California.
3*53889Smckusick  * All rights reserved.
4*53889Smckusick  *
5*53889Smckusick  * This code is derived from software contributed to Berkeley by
6*53889Smckusick  * Sony Corp. and Kazumasa Utashiro of Software Research Associates, Inc.
7*53889Smckusick  *
8*53889Smckusick  * %sccs.include.redist.c%
9*53889Smckusick  *
10*53889Smckusick  * from: $Hdr: bitmapif.h,v 4.300 91/06/09 06:14:42 root Rel41 $ SONY
11*53889Smckusick  *
12*53889Smckusick  *	@(#)bitmapif.h	7.1 (Berkeley) 06/04/92
13*53889Smckusick  */
14*53889Smckusick 
15*53889Smckusick /*
16*53889Smckusick  *  bitmap interface header
17*53889Smckusick  */
18*53889Smckusick #define	C_ON	1
19*53889Smckusick #define	C_OFF	0
20*53889Smckusick 
21*53889Smckusick struct	csr_buf {
22*53889Smckusick 	int	csr_x;			/*XXX cursor position x	*/
23*53889Smckusick 	int	csr_y;			/*XXX cursor position y	*/
24*53889Smckusick 	lPoint	csr_p;			/*  cursor point	*/
25*53889Smckusick 	int	csr_sw;			/*  cursor activity	*/
26*53889Smckusick 	int	csr_number;		/*  which cursor use	*/
27*53889Smckusick };
28