mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
9ae0fe54b0
the user driver, and the corresponding code into the dlls/x11drv directory. Moved a few functions out of the window driver into the user driver. Plus a few related cleanups.
32 lines
871 B
C
32 lines
871 B
C
/*
|
|
* Message definitions
|
|
*
|
|
* Copyright 1993 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_MESSAGE_H
|
|
#define __WINE_MESSAGE_H
|
|
|
|
#include "windef.h"
|
|
#include "wine/windef16.h"
|
|
#include "winproc.h"
|
|
|
|
struct tagMSG;
|
|
|
|
/* message.c */
|
|
extern BOOL MSG_InternalGetMessage( struct tagMSG *msg, HWND hwnd, HWND hwndOwner,
|
|
UINT first, UINT last, WPARAM code,
|
|
WORD flags, BOOL sendIdle, BOOL* idleSent );
|
|
|
|
/* timer.c */
|
|
extern void TIMER_RemoveWindowTimers( HWND hwnd );
|
|
extern void TIMER_RemoveQueueTimers( HQUEUE16 hqueue );
|
|
extern BOOL TIMER_GetTimerMsg( struct tagMSG *msg, HWND hwnd,
|
|
HQUEUE16 hQueue, BOOL remove );
|
|
extern BOOL TIMER_IsTimerValid( HWND hwnd, UINT id, HWINDOWPROC hProc );
|
|
|
|
/* input.c */
|
|
|
|
extern HWND EVENT_Capture( HWND, INT16 );
|
|
|
|
#endif /* __WINE_MESSAGE_H */
|