summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_int_input.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-14 20:36:33 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-14 20:36:33 +1100
commite3b35b33f519945036ecbe101b46cf701fca37fd (patch)
tree6024d3e783b3daebf5cbfeff6beffc3c0ebce004 /src/fltk_binding/c_fl_int_input.h
parentb787152c2603f8d51b1626f163d234b343dbeb6f (diff)
Added FLTK integer inputs
Diffstat (limited to 'src/fltk_binding/c_fl_int_input.h')
-rw-r--r--src/fltk_binding/c_fl_int_input.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_int_input.h b/src/fltk_binding/c_fl_int_input.h
new file mode 100644
index 0000000..5d99c3f
--- /dev/null
+++ b/src/fltk_binding/c_fl_int_input.h
@@ -0,0 +1,18 @@
+
+
+#ifndef FL_INT_INPUT_GUARD
+#define FL_INT_INPUT_GUARD
+
+
+typedef void* INT_INPUT;
+
+
+extern "C" INT_INPUT new_fl_int_input(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_int_input(INT_INPUT i);
+
+
+extern "C" const char * fl_int_input_get_value(INT_INPUT i);
+
+
+#endif
+