Files
linux-apfs/include/linux/keyboard.h
T

21 lines
626 B
C
Raw Normal View History

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 */
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