mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
526 B
25 lines
526 B
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// KBDDLL.H -
|
|
//
|
|
// Windows Keyboard Select Dynalink Include File
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Key combinations
|
|
|
|
#define ALT_SHIFT_COMBO 1
|
|
#define CTRL_SHIFT_COMBO 2
|
|
|
|
// Return values
|
|
|
|
#define KEY_PRIMARY_KL 1
|
|
#define KEY_ALTERNATE_KL 2
|
|
|
|
|
|
// Function prototypes
|
|
|
|
LRESULT CALLBACK KbdGetMsgProc (INT, WPARAM, LPARAM);
|
|
|
|
BOOL APIENTRY InitKbdHook (HWND, WORD);
|
|
|