diff options
Diffstat (limited to 'body/c_fl_horizontal_slider.h')
-rw-r--r-- | body/c_fl_horizontal_slider.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/body/c_fl_horizontal_slider.h b/body/c_fl_horizontal_slider.h new file mode 100644 index 0000000..96dd11a --- /dev/null +++ b/body/c_fl_horizontal_slider.h @@ -0,0 +1,24 @@ + + +// 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 + + |