summaryrefslogtreecommitdiff
path: root/src/c_fl_tabs.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2018-04-29 00:39:36 +1000
committerJed Barber <jjbarber@y7mail.com>2018-04-29 00:39:36 +1000
commitca9cca53a19145216cb0e00462db239e1194696d (patch)
treef76a7688667c12bfe8ccfb80343fe7a48aa71624 /src/c_fl_tabs.h
parentae3aaf71338960e85d27c88d7004497409c6a6d9 (diff)
FLTK.Event done, a whole bunch more polishing
Diffstat (limited to 'src/c_fl_tabs.h')
-rw-r--r--src/c_fl_tabs.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/c_fl_tabs.h b/src/c_fl_tabs.h
index 2d12500..97b2039 100644
--- a/src/c_fl_tabs.h
+++ b/src/c_fl_tabs.h
@@ -11,28 +11,28 @@ typedef void* TABS;
-extern "C" void tabs_set_draw_hook(TABS t, void * d);
-extern "C" void fl_tabs_draw(TABS t);
-extern "C" void tabs_set_handle_hook(TABS t, void * h);
-extern "C" int fl_tabs_handle(TABS t, int e);
+extern "C" inline void tabs_set_draw_hook(TABS t, void * d);
+extern "C" inline void fl_tabs_draw(TABS t);
+extern "C" inline void tabs_set_handle_hook(TABS t, void * h);
+extern "C" inline int fl_tabs_handle(TABS t, int e);
-extern "C" TABS new_fl_tabs(int x, int y, int w, int h, char* label);
-extern "C" void free_fl_tabs(TABS t);
+extern "C" inline TABS new_fl_tabs(int x, int y, int w, int h, char* label);
+extern "C" inline void free_fl_tabs(TABS t);
-extern "C" void fl_tabs_client_area(TABS t, int * x, int * y, int * w, int * h, int i);
+extern "C" inline void fl_tabs_client_area(TABS t, int * x, int * y, int * w, int * h, int i);
-extern "C" void * fl_tabs_get_push(TABS t);
-extern "C" void fl_tabs_set_push(TABS t, void * w);
-extern "C" void * fl_tabs_get_value(TABS t);
-extern "C" void fl_tabs_set_value(TABS t, void * w);
-extern "C" void * fl_tabs_which(TABS t, int x, int y);
+extern "C" inline void * fl_tabs_get_push(TABS t);
+extern "C" inline void fl_tabs_set_push(TABS t, void * w);
+extern "C" inline void * fl_tabs_get_value(TABS t);
+extern "C" inline void fl_tabs_set_value(TABS t, void * w);
+extern "C" inline void * fl_tabs_which(TABS t, int x, int y);
#endif