blob: 627442bfaab8b901c7084bc842f29881b3a036eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/**
* @file event.h
* @author Joe Wingbermuehle
* @date 2004-2006
*
* @brief Header for the event functions.
*
*/
#ifndef EVENT_H
#define EVENT_H
/** Wait for an event and process it. */
void WaitForEvent();
/** Process an event.
* @param event The event to process.
*/
void ProcessEvent(XEvent *event);
/** Discard excess motion events.
* @param event The event to return.
* @param w The window whose events to discard.
*/
void DiscardMotionEvents(XEvent *event, Window w);
#endif
|