summaryrefslogtreecommitdiff
path: root/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
commit7923568dc6447332ab1b9db727b9d64bea76dfcb (patch)
tree680bcf4f6917961f3891efb01c14336903b48cfa /c_fl_int_input.h
parentfa595e9e5b9c7692f21df548a0d06b5a3671fbc1 (diff)
Added FLTK integer inputs
Diffstat (limited to 'c_fl_int_input.h')
-rw-r--r--c_fl_int_input.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/c_fl_int_input.h b/c_fl_int_input.h
new file mode 100644
index 0000000..5d99c3f
--- /dev/null
+++ b/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
+