xref: /original-bsd/sys/sys/vcmd.h (revision 262b24ac)
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.2 (Berkeley) 12/18/87
7  */
8 
9 #ifndef _IOCTL_
10 #ifdef KERNEL
11 #include "ioctl.h"
12 #else
13 #include <sys/ioctl.h>
14 #endif
15 #endif
16 
17 #define	VPRINT		0100
18 #define	VPLOT		0200
19 #define	VPRINTPLOT	0400
20 
21 #define	VGETSTATE	_IOR('v', 0, int)
22 #define	VSETSTATE	_IOW('v', 1, int)
23