Displaying 1 result from an estimated 1 matches for "kp_enter".
2007 Sep 18
1
program to monitor USB keys
...nclude <sys/stat.h>
#include <linux/input.h>
#include "smsignal.h"
struct _msgnet_keycode
{
int keycode_value;
char *keycode_str;
int send_to_server; // .X will also send to server example: .4 says function 4
};
struct _msgnet_keycode msgnet_keycode[] =
{
{96, "KP_ENTER", 1}, // Keypad Enter Enter MUST be the first entry
{28, "KP_ENTER", 1}, // Keypad Enter USB
{14, "KP_BackSpace", 1}, // Keypad BS
{55, "KP_Multiply", 1}, // Keypad *
{98, "KP_Divide", 1}, // Keypad /
{78, "KP_Plus", 1}, // Keypad...