blob: 53f85653a52a0548a40f6130005a980b68f21ba0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* pccons.h -- pccons ioctl definitions
*
* $Id: pccons.h,v 1.1 1995/10/18 10:39:15 deraadt Exp $
*/
#ifndef _PCCONS_H_
#define _PCCONS_H_
#ifndef _KERNEL
#include <sys/ioctl.h>
#else
#include "ioctl.h"
#endif
#define CONSOLE_X_MODE_ON _IO('t',121)
#define CONSOLE_X_MODE_OFF _IO('t',122)
#define CONSOLE_X_BELL _IOW('t',123,int[2])
#define CONSOLE_SET_TYPEMATIC_RATE _IOW('t',124,u_char)
#endif /* _PCCONS_H_ */
|