Release 960528
[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 "win.h"
11 #include "queue.h"
12
13 extern DWORD MSG_WineStartTicks;  /* Ticks at Wine startup */
14
15 /* message.c */
16 extern BOOL MSG_GetHardwareMessage( LPMSG msg );
17 extern BOOL MSG_InternalGetMessage( SEGPTR msg, HWND hwnd, HWND hwndOwner,
18                                     short code, WORD flags, BOOL sendIdle );
19
20 /* timer.c */
21 extern void TIMER_RemoveWindowTimers( HWND hwnd );
22 extern void TIMER_RemoveQueueTimers( HQUEUE hqueue );
23 extern void TIMER_SwitchQueue( HQUEUE hOldQueue, HQUEUE hNewQueue );
24 extern LONG TIMER_GetNextExp(void);
25
26 /* event.c */
27 extern BOOL EVENT_WaitXEvent( LONG maxWait );
28 extern void EVENT_Synchronize(void);
29 extern void EVENT_ProcessEvent( XEvent *event );
30 extern void EVENT_RegisterWindow( Window w, HWND hwnd );
31 extern void EVENT_DummyMotionNotify(void);
32
33 #endif  /* __WINE_MESSAGE_H */