Release 960611
[wine.git] / include / message.h
blob72f64adc198b131cc929b5a220f7714395b00dd8
1 /*
2 * Message definitions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #ifndef __WINE_MESSAGE_H
8 #define __WINE_MESSAGE_H
10 #include "win.h"
11 #include "queue.h"
13 extern DWORD MSG_WineStartTicks; /* Ticks at Wine startup */
15 /* message.c */
16 extern BOOL MSG_GetHardwareMessage( LPMSG16 msg );
17 extern BOOL MSG_InternalGetMessage( SEGPTR msg, HWND hwnd, HWND hwndOwner,
18 short code, WORD flags, BOOL sendIdle );
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);
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);
33 #endif /* __WINE_MESSAGE_H */