source: trunk/minix/include/sys/kbdio.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 407 bytes
Line 
1#ifndef _SYS__KBDIO_H
2#define _SYS__KBDIO_H
3
4#include <sys/time.h>
5
6typedef struct kio_bell
7{
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;
12
13typedef struct kio_leds
14{
15 unsigned kl_bits;
16} kio_leds_t;
17
18#define KBD_LEDS_NUM 0x1
19#define KBD_LEDS_CAPS 0x2
20#define KBD_LEDS_SCROLL 0x4
21
22#endif /* _SYS__KBDIO_H */
Note: See TracBrowser for help on using the repository browser.