NetBSD/sys/arch/i386/include/pccons.h

27 lines
525 B
C

/* $NetBSD: pccons.h,v 1.9 2003/10/27 13:44:20 junyoung Exp $ */
/*
* 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)
#ifdef _KERNEL
int pccnattach(void);
#if (NPCCONSKBD > 0)
int pcconskbd_cnattach(pckbc_tag_t, pckbc_slot_t);
#endif
#endif /* _KERNEL */
#endif /* _PCCONS_H_ */