xref: /original-bsd/sys/sys/vcmd.h (revision 95a66346)
1 /*
2  * Copyright (c) 1982, 1986 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)vcmd.h	7.3 (Berkeley) 02/05/91
7  */
8 
9 #ifdef KERNEL
10 #include "ioctl.h"
11 #else
12 #include <sys/ioctl.h>
13 #endif
14 
15 #define	VPRINT		0100
16 #define	VPLOT		0200
17 #define	VPRINTPLOT	0400
18 
19 #define	VGETSTATE	_IOR('v', 0, int)
20 #define	VSETSTATE	_IOW('v', 1, int)
21