Fixed some ANSI C violations.
[wine/testsucceed.git] / include / message.h
blob9ac0a2de5b3c8737c608fe2141b4eb07493260ed
1 /*
2 * Message definitions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #ifndef __WINE_MESSAGE_H
8 #define __WINE_MESSAGE_H
10 #include "windef.h"
12 struct tagMSG;
14 extern DWORD MSG_WineStartTicks; /* Ticks at Wine startup */
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 );
21 /* timer.c */
22 extern BOOL TIMER_Init( void );
23 extern void TIMER_RemoveWindowTimers( HWND hwnd );
24 extern void TIMER_RemoveQueueTimers( HQUEUE16 hqueue );
25 extern BOOL TIMER_GetTimerMsg( struct tagMSG *msg, HWND hwnd,
26 HQUEUE16 hQueue, BOOL remove );
28 /* event.c */
29 extern void EVENT_Synchronize( void );
30 extern BOOL EVENT_CheckFocus( void );
32 /* input.c */
34 extern HWND EVENT_Capture( HWND, INT16 );
36 #endif /* __WINE_MESSAGE_H */