- BuildCommDCB16() uses int instead of BOOL
[wine/wine64.git] / include / message.h
blob1d9968bf36c54d0ca93e921cb5dc8e4f6b72a133
1 /*
2 * Message definitions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #ifndef __WINE_MESSAGE_H
8 #define __WINE_MESSAGE_H
10 #include "windef.h"
11 #include "wine/windef16.h"
12 #include "winproc.h"
14 struct tagMSG;
16 /* message.c */
17 extern BOOL MSG_InternalGetMessage( struct tagMSG *msg, HWND hwnd, HWND hwndOwner,
18 UINT first, UINT last, WPARAM code,
19 WORD flags, BOOL sendIdle, BOOL* idleSent );
21 /* timer.c */
22 extern void TIMER_RemoveWindowTimers( HWND hwnd );
23 extern void TIMER_RemoveQueueTimers( HQUEUE16 hqueue );
24 extern BOOL TIMER_IsTimerValid( HWND hwnd, UINT id, HWINDOWPROC hProc );
26 /* input.c */
28 extern HWND EVENT_Capture( HWND, INT16 );
30 #endif /* __WINE_MESSAGE_H */