minix/common/include/sys/kbdio.h
Gianluca Guida f4814901af Move even more includes to common/include.
This patch moves more includes (most of them, to tell the truth) to
common/include directory. This completes the list of includes needed
to compile current trunk with the new libc (but to do that you need
more patches in queue).

This patch also contains some modification (for compilation with new
headers) to the common includes under __NBSD_LIBC, the define used
in mk script to specialize compilation with new includes.
2011-03-03 16:39:02 +00:00

23 lines
407 B
C

#ifndef _SYS__KBDIO_H
#define _SYS__KBDIO_H
#include <sys/time.h>
typedef struct kio_bell
{
unsigned kb_pitch; /* Bell frequency in HZ */
unsigned long kb_volume; /* Volume in micro volts */
struct timeval kb_duration;
} kio_bell_t;
typedef struct kio_leds
{
unsigned kl_bits;
} kio_leds_t;
#define KBD_LEDS_NUM 0x1
#define KBD_LEDS_CAPS 0x2
#define KBD_LEDS_SCROLL 0x4
#endif /* _SYS__KBDIO_H */