Moved all Win16 definitions out of the standard Windows headers.
[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
13 struct tagMSG;
14
15 /* message.c */
16 extern BOOL MSG_InternalGetMessage( int type, struct tagMSG *msg, HWND hwnd,
17                                     HWND hwndOwner, WPARAM code,
18                                     WORD flags, BOOL sendIdle, BOOL* idleSent );
19
20 /* timer.c */
21 extern void TIMER_RemoveWindowTimers( HWND hwnd );
22 extern void TIMER_RemoveQueueTimers( HQUEUE16 hqueue );
23 extern BOOL TIMER_GetTimerMsg( struct tagMSG *msg, HWND hwnd,
24                                  HQUEUE16 hQueue, BOOL remove );
25
26 /* event.c */
27 extern void EVENT_Synchronize( void );
28 extern BOOL EVENT_CheckFocus( void );
29
30 /* input.c */
31
32 extern HWND EVENT_Capture( HWND, INT16 );
33
34 #endif  /* __WINE_MESSAGE_H */