summaryrefslogtreecommitdiff
path: root/src/window_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/window_type.h')
-rw-r--r--src/window_type.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/window_type.h b/src/window_type.h
index 29fe15dc0..9727cf9f1 100644
--- a/src/window_type.h
+++ b/src/window_type.h
@@ -691,4 +691,10 @@ struct Window;
/** Number to differentiate different windows of the same class */
typedef int32 WindowNumber;
+/** State of handling an event. */
+enum EventState {
+ ES_HANDLED, ///< The passed event is handled.
+ ES_NOT_HANDLED, ///< The passed event is not handled.
+};
+
#endif /* WINDOW_TYPE_H */