summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_check_button.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-26 04:35:58 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-26 04:35:58 +1000
commit2b4468a62a55d9f8520582f9aa2e420ab89ed7bd (patch)
tree6a112a0f3db36b622a71bccf9a2b7dc0130e6e2e /src/fltk_binding/c_fl_check_button.h
parent524edbb4463b66d61e92c92a7020d9d09b82e744 (diff)
In the interests of readability and consistent style...
Diffstat (limited to 'src/fltk_binding/c_fl_check_button.h')
-rw-r--r--src/fltk_binding/c_fl_check_button.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fltk_binding/c_fl_check_button.h b/src/fltk_binding/c_fl_check_button.h
index 23834df..f44b5ec 100644
--- a/src/fltk_binding/c_fl_check_button.h
+++ b/src/fltk_binding/c_fl_check_button.h
@@ -4,11 +4,11 @@
#define FL_CHECK_BUTTON_GUARD
-typedef void* my_fl_check_button;
+typedef void* CHECKBUTTON;
-extern "C" my_fl_check_button new_fl_check_button(int x, int y, int w, int h, char * label);
-extern "C" void free_fl_check_button(my_fl_check_button b);
+extern "C" CHECKBUTTON new_fl_check_button(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_check_button(CHECKBUTTON b);
#endif