• source navigation • diff markup • identifier search • freetext search •
Version: 2.6.32 2.6.33 2.6.34 2.6.35 2.6.36 2.6.37 2.6.38 2.6.39 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 3.9
Architecture: x86 arm avr32 blackfin m68k m68knommu microblaze mips powerpc sh
1 #ifndef __LINUX_KEYBOARD_H 2 #define __LINUX_KEYBOARD_H 3 4 #include <uapi/linux/keyboard.h> 5 6 struct notifier_block; 7 extern unsigned short *key_maps[MAX_NR_KEYMAPS]; 8 extern unsigned short plain_map[NR_KEYS]; 9 10 struct keyboard_notifier_param { 11 struct vc_data *vc; /* VC on which the keyboard press was done */ 12 int down; /* Pressure of the key? */ 13 int shift; /* Current shift mask */ 14 int ledstate; /* Current led state */ 15 unsigned int value; /* keycode, unicode value or keysym */ 16 }; 17 18 extern int register_keyboard_notifier(struct notifier_block *nb); 19 extern int unregister_keyboard_notifier(struct notifier_block *nb); 20 #endif 21
This page was automatically generated by LXR 0.3.1 (source). • Linux is a registered trademark of Linus Torvalds