2005-04-16 15:20:36 -07:00
|
|
|
#ifndef __LINUX_KEYBOARD_H
|
|
|
|
|
#define __LINUX_KEYBOARD_H
|
|
|
|
|
|
2012-10-13 10:46:48 +01:00
|
|
|
#include <uapi/linux/keyboard.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-18 23:39:12 -07:00
|
|
|
struct notifier_block;
|
2005-04-16 15:20:36 -07:00
|
|
|
extern unsigned short *key_maps[MAX_NR_KEYMAPS];
|
|
|
|
|
extern unsigned short plain_map[NR_KEYS];
|
2007-10-18 23:39:12 -07:00
|
|
|
|
|
|
|
|
struct keyboard_notifier_param {
|
|
|
|
|
struct vc_data *vc; /* VC on which the keyboard press was done */
|
|
|
|
|
int down; /* Pressure of the key? */
|
|
|
|
|
int shift; /* Current shift mask */
|
2008-04-15 01:30:32 -04:00
|
|
|
int ledstate; /* Current led state */
|
2007-10-18 23:39:12 -07:00
|
|
|
unsigned int value; /* keycode, unicode value or keysym */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern int register_keyboard_notifier(struct notifier_block *nb);
|
|
|
|
|
extern int unregister_keyboard_notifier(struct notifier_block *nb);
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|