xref: /csrg-svn/sys/news3400/bm/bitmapif.h (revision 63250)
153889Smckusick /*
2*63250Sbostic  * Copyright (c) 1992, 1993
3*63250Sbostic  *	The Regents of the University of California.  All rights reserved.
453889Smckusick  *
553889Smckusick  * This code is derived from software contributed to Berkeley by
653889Smckusick  * Sony Corp. and Kazumasa Utashiro of Software Research Associates, Inc.
753889Smckusick  *
853889Smckusick  * %sccs.include.redist.c%
953889Smckusick  *
1053889Smckusick  * from: $Hdr: bitmapif.h,v 4.300 91/06/09 06:14:42 root Rel41 $ SONY
1153889Smckusick  *
12*63250Sbostic  *	@(#)bitmapif.h	8.1 (Berkeley) 06/10/93
1353889Smckusick  */
1453889Smckusick 
1553889Smckusick /*
1653889Smckusick  *  bitmap interface header
1753889Smckusick  */
1853889Smckusick #define	C_ON	1
1953889Smckusick #define	C_OFF	0
2053889Smckusick 
2153889Smckusick struct	csr_buf {
2253889Smckusick 	int	csr_x;			/*XXX cursor position x	*/
2353889Smckusick 	int	csr_y;			/*XXX cursor position y	*/
2453889Smckusick 	lPoint	csr_p;			/*  cursor point	*/
2553889Smckusick 	int	csr_sw;			/*  cursor activity	*/
2653889Smckusick 	int	csr_number;		/*  which cursor use	*/
2753889Smckusick };
28