summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_toggle_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_toggle_button.h')
-rw-r--r--src/fltk_binding/c_fl_toggle_button.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fltk_binding/c_fl_toggle_button.h b/src/fltk_binding/c_fl_toggle_button.h
index a5d7f13..ed86ed4 100644
--- a/src/fltk_binding/c_fl_toggle_button.h
+++ b/src/fltk_binding/c_fl_toggle_button.h
@@ -4,11 +4,11 @@
#define FL_TOGGLE_BUTTON_GUARD
-typedef void* my_fl_toggle_button;
+typedef void* TOGGLEBUTTON;
-extern "C" my_fl_toggle_button new_fl_toggle_button(int x, int y, int w, int h, char * label);
-extern "C" void free_fl_toggle_button(my_fl_toggle_button b);
+extern "C" TOGGLEBUTTON new_fl_toggle_button(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_toggle_button(TOGGLEBUTTON b);
#endif