aboutsummaryrefslogtreecommitdiff
path: root/src/c_fl_horizontal_slider.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_horizontal_slider.h')
-rw-r--r--src/c_fl_horizontal_slider.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/c_fl_horizontal_slider.h b/src/c_fl_horizontal_slider.h
deleted file mode 100644
index 96dd11a..0000000
--- a/src/c_fl_horizontal_slider.h
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-// Programmed by Jedidiah Barber
-// Released into the public domain
-
-
-#ifndef FL_HORIZONTAL_SLIDER_GUARD
-#define FL_HORIZONTAL_SLIDER_GUARD
-
-
-typedef void* HORIZONTALSLIDER;
-
-
-extern "C" HORIZONTALSLIDER new_fl_horizontal_slider(int x, int y, int w, int h, char* label);
-extern "C" void free_fl_horizontal_slider(HORIZONTALSLIDER s);
-
-
-extern "C" void fl_horizontal_slider_draw(HORIZONTALSLIDER s);
-extern "C" int fl_horizontal_slider_handle(HORIZONTALSLIDER s, int e);
-
-
-#endif
-
-