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