summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_button.h')
-rw-r--r--src/fltk_binding/c_fl_button.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/fltk_binding/c_fl_button.h b/src/fltk_binding/c_fl_button.h
deleted file mode 100644
index 239689a..0000000
--- a/src/fltk_binding/c_fl_button.h
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-#ifndef FL_BUTTON_GUARD
-#define FL_BUTTON_GUARD
-
-
-typedef void* BUTTON;
-
-
-extern "C" BUTTON new_fl_button(int x, int y, int w, int h, char* label);
-extern "C" void free_fl_button(BUTTON b);
-
-extern "C" int fl_button_get_state(BUTTON b);
-extern "C" void fl_button_set_state(BUTTON b, int s);
-extern "C" void fl_button_set_only(BUTTON b);
-
-
-#endif
-