Changeset 2081 for trunk/include/win/hook.h
- Timestamp:
- Dec 16, 1999, 1:09:32 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/hook.h
r4 r2081 1 /* $Id: hook.h,v 1. 1 1999-05-24 20:19:12 ktkExp $ */1 /* $Id: hook.h,v 1.2 1999-12-16 00:09:32 sandervl Exp $ */ 2 2 3 3 /* … … 12 12 #include "windef.h" 13 13 14 #define HOOK_WIN16 0x0015 #define HOOK_WIN32A 0x0116 #define HOOK_WIN32W 0x0217 #define HOOK_INUSE 0x8018 14 #define HOOK_WIN16 0x00 15 #define HOOK_WIN32A 0x01 16 #define HOOK_WIN32W 0x02 17 #define HOOK_INUSE 0x80 18 #define HOOK_DELAYED_DELETE 0x100 19 19 20 20 /* hook type mask */ … … 22 22 23 23 extern HOOKPROC16 HOOK_GetProc16( HHOOK hhook ); 24 extern BOOL HOOK_IsHooked( INT 16id );24 extern BOOL HOOK_IsHooked( INT id ); 25 25 extern LRESULT HOOK_CallHooks16( INT16 id, INT16 code, WPARAM16 wParam, 26 26 LPARAM lParam ); … … 29 29 extern LRESULT HOOK_CallHooksW( INT id, INT code, WPARAM wParam, 30 30 LPARAM lParam ); 31 extern void HOOK_FreeModuleHooks( HMODULE 16hModule );32 extern void HOOK_FreeQueueHooks( HQUEUE16 hQueue);33 extern void HOOK_ResetQueueHooks( HQUEUE 16hQueue );31 extern void HOOK_FreeModuleHooks( HMODULE hModule ); 32 extern void HOOK_FreeQueueHooks( DWORD threadId ); 33 extern void HOOK_ResetQueueHooks( HQUEUE hQueue ); 34 34 extern HOOKPROC HOOK_GetProc( HHOOK hook ); 35 35
Note:
See TracChangeset
for help on using the changeset viewer.