From 2aac034b614d6de39f4aee9f41dba8f2bcc63d8d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 26 May 2016 04:35:58 +1000 Subject: In the interests of readability and consistent style... --- c_fl_toggle_button.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c_fl_toggle_button.h') diff --git a/c_fl_toggle_button.h b/c_fl_toggle_button.h index a5d7f13..ed86ed4 100644 --- a/c_fl_toggle_button.h +++ b/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 -- cgit