1999-02-06 21:46:21 +03:00
|
|
|
/* $NetBSD: pccons.h,v 1.8 1999/02/06 18:46:21 drochner Exp $ */
|
1994-10-27 07:14:23 +03:00
|
|
|
|
1993-09-28 06:26:17 +03:00
|
|
|
/*
|
|
|
|
* pccons.h -- pccons ioctl definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PCCONS_H_
|
|
|
|
#define _PCCONS_H_
|
|
|
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#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)
|
|
|
|
|
1997-08-14 20:02:14 +04:00
|
|
|
#ifdef _KERNEL
|
1997-08-23 18:10:12 +04:00
|
|
|
int pccnattach __P((void));
|
1998-03-22 20:49:00 +03:00
|
|
|
|
1999-02-06 21:46:21 +03:00
|
|
|
#if (NPCCONSKBD > 0)
|
1998-03-22 20:49:00 +03:00
|
|
|
int pcconskbd_cnattach __P((pckbc_tag_t, pckbc_slot_t));
|
1997-08-14 20:02:14 +04:00
|
|
|
#endif
|
|
|
|
|
1998-03-22 20:49:00 +03:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
1993-09-28 06:26:17 +03:00
|
|
|
#endif /* _PCCONS_H_ */
|