From fefc9bf753a8595eaa75ce51eb71eb553f4bbaaf Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 13 May 2018 02:25:14 +1000 Subject: Finished and polished FLTK.Widgets.Groups, fixed inlining linking issue --- src/c_fl_scrollbar.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/c_fl_scrollbar.h') diff --git a/src/c_fl_scrollbar.h b/src/c_fl_scrollbar.h index 90311ac..311abfa 100644 --- a/src/c_fl_scrollbar.h +++ b/src/c_fl_scrollbar.h @@ -11,25 +11,25 @@ typedef void* SCROLLBAR; -extern "C" inline void scrollbar_set_draw_hook(SCROLLBAR s, void * d); -extern "C" inline void fl_scrollbar_draw(SCROLLBAR s); -extern "C" inline void scrollbar_set_handle_hook(SCROLLBAR s, void * h); -extern "C" inline int fl_scrollbar_handle(SCROLLBAR s, int e); +extern "C" void scrollbar_set_draw_hook(SCROLLBAR s, void * d); +extern "C" void fl_scrollbar_draw(SCROLLBAR s); +extern "C" void scrollbar_set_handle_hook(SCROLLBAR s, void * h); +extern "C" int fl_scrollbar_handle(SCROLLBAR s, int e); -extern "C" inline SCROLLBAR new_fl_scrollbar(int x, int y, int w, int h, char* label); -extern "C" inline void free_fl_scrollbar(SCROLLBAR s); +extern "C" SCROLLBAR new_fl_scrollbar(int x, int y, int w, int h, char* label); +extern "C" void free_fl_scrollbar(SCROLLBAR s); -extern "C" inline int fl_scrollbar_get_linesize(SCROLLBAR s); -extern "C" inline void fl_scrollbar_set_linesize(SCROLLBAR s, int t); -extern "C" inline int fl_scrollbar_get_value(SCROLLBAR s); -extern "C" inline void fl_scrollbar_set_value(SCROLLBAR s, int t); -extern "C" inline void fl_scrollbar_set_value2(SCROLLBAR s, int p, int w, int f, int t); +extern "C" int fl_scrollbar_get_linesize(SCROLLBAR s); +extern "C" void fl_scrollbar_set_linesize(SCROLLBAR s, int t); +extern "C" int fl_scrollbar_get_value(SCROLLBAR s); +extern "C" void fl_scrollbar_set_value(SCROLLBAR s, int t); +extern "C" void fl_scrollbar_set_value2(SCROLLBAR s, int p, int w, int f, int t); #endif -- cgit