Displaying 1 result from an estimated 1 matches for "kp_backspace".
2007 Sep 18
1
program to monitor USB keys
...;
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 +
{74, "KP_Minus", 1}, // Keypad -
{83, "KP_Period", 0}, // Keypad .
{73, "KP_9", 0}, // Keypad 9
{72...