Added definitions of MERITs.
[wine] / include / message.h
1 /*
2  * Message definitions
3  *
4  * Copyright 1993 Alexandre Julliard
5  */
6
7 #ifndef __WINE_MESSAGE_H
8 #define __WINE_MESSAGE_H
9
10 #include "windef.h"
11 #include "wine/windef16.h"
12 #include "winproc.h"
13
14 /* message.c */
15 extern BOOL MSG_process_raw_hardware_message( MSG *msg, ULONG_PTR extra_info, HWND hwnd_filter,
16                                               UINT first, UINT last, BOOL remove );
17 extern BOOL MSG_process_cooked_hardware_message( MSG *msg, ULONG_PTR extra_info, BOOL remove );
18 extern void MSG_JournalPlayBackMsg(void);
19
20 /* sendmsg.c */
21 extern BOOL MSG_peek_message( MSG *msg, HWND hwnd, UINT first, UINT last, int flags );
22
23 /* timer.c */
24 extern void TIMER_RemoveWindowTimers( HWND hwnd );
25 extern void TIMER_RemoveQueueTimers( HQUEUE16 hqueue );
26 extern BOOL TIMER_IsTimerValid( HWND hwnd, UINT id, HWINDOWPROC hProc );
27
28 /* input.c */
29
30 extern HWND EVENT_Capture( HWND, INT16 );
31
32 #endif  /* __WINE_MESSAGE_H */