aboutsummaryrefslogtreecommitdiff
path: root/src/c_fl_int_input.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_int_input.h')
-rw-r--r--src/c_fl_int_input.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/c_fl_int_input.h b/src/c_fl_int_input.h
deleted file mode 100644
index 907c041..0000000
--- a/src/c_fl_int_input.h
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-#ifndef FL_INT_INPUT_GUARD
-#define FL_INT_INPUT_GUARD
-
-
-
-
-typedef void* INT_INPUT;
-
-
-
-
-extern "C" void int_input_set_draw_hook(INT_INPUT i, void * d);
-extern "C" void fl_int_input_draw(INT_INPUT i);
-extern "C" void int_input_set_handle_hook(INT_INPUT i, void * h);
-extern "C" int fl_int_input_handle(INT_INPUT i, int e);
-
-
-
-
-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);
-
-
-#endif
-