add swifi to the build/install.
[minix.git] / include / sys / kbdio.h
blobce21d57057e427c156dd55a2549cd1b600020808
1 #ifndef _SYS__KBDIO_H
2 #define _SYS__KBDIO_H
4 #include <sys/time.h>
6 typedef struct kio_bell
8 unsigned kb_pitch; /* Bell frequency in HZ */
9 unsigned long kb_volume; /* Volume in micro volts */
10 struct timeval kb_duration;
11 } kio_bell_t;
13 typedef struct kio_leds
15 unsigned kl_bits;
16 } kio_leds_t;
18 #define KBD_LEDS_NUM 0x1
19 #define KBD_LEDS_CAPS 0x2
20 #define KBD_LEDS_SCROLL 0x4
22 #endif /* _SYS__KBDIO_H */