Yet another attempt at fixing CW_USEDEFAULT handling.
[wine.git] / include / message.h
bloba9d251046d1ecc124e10c757a0af4b0bdca33065
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 /* message.c */
15 extern BOOL MSG_InternalGetMessage( int type, struct tagMSG *msg, HWND hwnd,
16 HWND hwndOwner, WPARAM code,
17 WORD flags, BOOL sendIdle, BOOL* idleSent );
19 /* timer.c */
20 extern void TIMER_RemoveWindowTimers( HWND hwnd );
21 extern void TIMER_RemoveQueueTimers( HQUEUE16 hqueue );
22 extern BOOL TIMER_GetTimerMsg( struct tagMSG *msg, HWND hwnd,
23 HQUEUE16 hQueue, BOOL remove );
25 /* event.c */
26 extern void EVENT_Synchronize( void );
27 extern BOOL EVENT_CheckFocus( void );
29 /* input.c */
31 extern HWND EVENT_Capture( HWND, INT16 );
33 #endif /* __WINE_MESSAGE_H */