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