Line | |
---|
1 | /** @file
|
---|
2 | *
|
---|
3 | * VBoxHook -- Global windows hook dll
|
---|
4 | *
|
---|
5 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
6 | *
|
---|
7 | * innotek GmbH confidential
|
---|
8 | * All rights reserved
|
---|
9 | */
|
---|
10 | #ifndef __VBoxHook_h__
|
---|
11 | #define __VBoxHook_h__
|
---|
12 |
|
---|
13 | /* custom messages as we must install the hook from the main thread */
|
---|
14 | #define WM_VBOX_INSTALL_SEAMLESS_HOOK 0x2001
|
---|
15 | #define WM_VBOX_REMOVE_SEAMLESS_HOOK 0x2002
|
---|
16 | #define WM_VBOX_SEAMLESS_UPDATE 0x2003
|
---|
17 |
|
---|
18 |
|
---|
19 | #define VBOXHOOK_DLL_NAME "VBoxHook.dll"
|
---|
20 |
|
---|
21 | /* Install the global message hook */
|
---|
22 | BOOL VBoxInstallHook(HMODULE hDll, HWND hwndPostWindow);
|
---|
23 |
|
---|
24 | /* Remove the global message hook */
|
---|
25 | BOOL VBoxRemoveHook();
|
---|
26 |
|
---|
27 | #endif /* __VBoxHook_h__ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.