summaryrefslogtreecommitdiff
path: root/src/c_fl_event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_event.cpp')
-rw-r--r--src/c_fl_event.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/c_fl_event.cpp b/src/c_fl_event.cpp
index 526ed44..17f3ee8 100644
--- a/src/c_fl_event.cpp
+++ b/src/c_fl_event.cpp
@@ -8,3 +8,26 @@ int fl_event_key() {
return Fl::event_key();
}
+
+
+
+int fl_event_x() {
+ return Fl::event_x();
+}
+
+int fl_event_x_root() {
+ return Fl::event_x_root();
+}
+
+int fl_event_y() {
+ return Fl::event_y();
+}
+
+int fl_event_y_root() {
+ return Fl::event_y_root();
+}
+
+int fl_event_is_click() {
+ return Fl::event_is_click();
+}
+