Create directories that don't contain a Makefile.
[wine/multimedia.git] / include / hook.h
blob0db34ef7789af565ef1d8ca51d2f7b59ad88b4ca
1 /*
2 * Windows hook definitions
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_HOOK_H
8 #define __WINE_HOOK_H
10 #include "windef.h"
12 #define HOOK_WIN16 0x00
13 #define HOOK_WIN32A 0x01
14 #define HOOK_WIN32W 0x02
15 #define HOOK_INUSE 0x80
18 /* hook type mask */
19 #define HOOK_MAPTYPE (HOOK_WIN16 | HOOK_WIN32A | HOOK_WIN32W)
21 extern BOOL HOOK_IsHooked( INT16 id );
22 extern LRESULT HOOK_CallHooks16( INT16 id, INT16 code, WPARAM16 wParam,
23 LPARAM lParam );
24 extern LRESULT HOOK_CallHooksA( INT id, INT code, WPARAM wParam,
25 LPARAM lParam );
26 extern LRESULT HOOK_CallHooksW( INT id, INT code, WPARAM wParam,
27 LPARAM lParam );
28 extern void HOOK_FreeModuleHooks( HMODULE16 hModule );
29 extern void HOOK_FreeQueueHooks( HQUEUE16 hQueue );
30 extern void HOOK_ResetQueueHooks( HQUEUE16 hQueue );
32 #endif /* __WINE_HOOK_H */