summaryrefslogtreecommitdiff
path: root/src/c_fl_scrollbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_scrollbar.h')
-rw-r--r--src/c_fl_scrollbar.h22
1 files changed, 11 insertions, 11 deletions
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