Line | |
---|
1 | /*
|
---|
2 | * Keyboard hook definitions
|
---|
3 | *
|
---|
4 | * Copyright 2003 Innotek Systemberatung GmbH (sandervl@innotek.de)
|
---|
5 | *
|
---|
6 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
7 | */
|
---|
8 |
|
---|
9 | #ifndef __KBDHOOK_H
|
---|
10 | #define __KBDHOOK_H
|
---|
11 |
|
---|
12 | /**************************************************************/
|
---|
13 | /* Try to load the Presentation Manager Keyboard Hook module. */
|
---|
14 | /* If this fails, some hotkeys may not arrive properly at the */
|
---|
15 | /* targetted window, but no more harmful things will happen. */
|
---|
16 | /**************************************************************/
|
---|
17 | #define STD_PMKBDHK_MODULE "PMKBDHK";
|
---|
18 | #define PMKBDHK_HOOK_INIT "_hookInit@8"
|
---|
19 | #define PMKBDHK_HOOK_TERM "_hookKill@0"
|
---|
20 |
|
---|
21 |
|
---|
22 | typedef BOOL (* WIN32API PFN_HOOKINIT)(HAB hab, char *lpszWindowClass);
|
---|
23 | typedef BOOL (* WIN32API PFN_HOOKTERM)(void);
|
---|
24 |
|
---|
25 |
|
---|
26 | #endif // __KBDHOOK_H
|
---|
27 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.