Removed some unnecessary #includes and dll dependencies.
[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
12 struct tagMSG;
13
14 /* message.c */
15 extern BOOL MSG_InternalGetMessage( int type, struct tagMSG *msg, HWND hwnd,
16                                     HWND hwndOwner, WPARAM code,
17                                     WORD flags, BOOL sendIdle, BOOL* idleSent );
18
19 /* timer.c */
20 extern void TIMER_RemoveWindowTimers( HWND hwnd );
21 extern void TIMER_RemoveQueueTimers( HQUEUE16 hqueue );
22 extern BOOL TIMER_GetTimerMsg( struct tagMSG *msg, HWND hwnd,
23                                  HQUEUE16 hQueue, BOOL remove );
24
25 /* event.c */
26 extern void EVENT_Synchronize( void );
27 extern BOOL EVENT_CheckFocus( void );
28
29 /* input.c */
30
31 extern HWND EVENT_Capture( HWND, INT16 );
32
33 #endif  /* __WINE_MESSAGE_H */