summaryrefslogtreecommitdiff
path: root/src/c_fl_menu_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_menu_button.h')
-rw-r--r--src/c_fl_menu_button.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/c_fl_menu_button.h b/src/c_fl_menu_button.h
index fe44c2a..8013bf9 100644
--- a/src/c_fl_menu_button.h
+++ b/src/c_fl_menu_button.h
@@ -11,22 +11,22 @@ typedef void* MENUBUTTON;
-extern "C" inline void menu_button_set_draw_hook(MENUBUTTON m, void * d);
-extern "C" inline void fl_menu_button_draw(MENUBUTTON m);
-extern "C" inline void menu_button_set_handle_hook(MENUBUTTON m, void * h);
-extern "C" inline int fl_menu_button_handle(MENUBUTTON m, int e);
+extern "C" void menu_button_set_draw_hook(MENUBUTTON m, void * d);
+extern "C" void fl_menu_button_draw(MENUBUTTON m);
+extern "C" void menu_button_set_handle_hook(MENUBUTTON m, void * h);
+extern "C" int fl_menu_button_handle(MENUBUTTON m, int e);
-extern "C" inline MENUBUTTON new_fl_menu_button(int x, int y, int w, int h, char* label);
-extern "C" inline void free_fl_menu_button(MENUBUTTON m);
+extern "C" MENUBUTTON new_fl_menu_button(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_menu_button(MENUBUTTON m);
-extern "C" inline void fl_menu_button_type(MENUBUTTON m, unsigned int t);
-extern "C" inline const void * fl_menu_button_popup(MENUBUTTON m);
+extern "C" void fl_menu_button_type(MENUBUTTON m, unsigned int t);
+extern "C" const void * fl_menu_button_popup(MENUBUTTON m);
#endif