summaryrefslogtreecommitdiff
path: root/src/c_fl_input_choice.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_input_choice.h')
-rw-r--r--src/c_fl_input_choice.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/c_fl_input_choice.h b/src/c_fl_input_choice.h
index 2535b93..9b1c1d4 100644
--- a/src/c_fl_input_choice.h
+++ b/src/c_fl_input_choice.h
@@ -11,41 +11,41 @@ typedef void* INPUT_CHOICE;
-extern "C" inline void input_choice_set_draw_hook(INPUT_CHOICE n, void * d);
-extern "C" inline void fl_input_choice_draw(INPUT_CHOICE n);
-extern "C" inline void input_choice_set_handle_hook(INPUT_CHOICE n, void * h);
-extern "C" inline int fl_input_choice_handle(INPUT_CHOICE n, int e);
+extern "C" void input_choice_set_draw_hook(INPUT_CHOICE n, void * d);
+extern "C" void fl_input_choice_draw(INPUT_CHOICE n);
+extern "C" void input_choice_set_handle_hook(INPUT_CHOICE n, void * h);
+extern "C" int fl_input_choice_handle(INPUT_CHOICE n, int e);
-extern "C" inline INPUT_CHOICE new_fl_input_choice(int x, int y, int w, int h, char* label);
-extern "C" inline void free_fl_input_choice(INPUT_CHOICE n);
+extern "C" INPUT_CHOICE new_fl_input_choice(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_input_choice(INPUT_CHOICE n);
-extern "C" inline void * fl_input_choice_input(INPUT_CHOICE n);
-extern "C" inline void * fl_input_choice_menubutton(INPUT_CHOICE n);
+extern "C" void * fl_input_choice_input(INPUT_CHOICE n);
+extern "C" void * fl_input_choice_menubutton(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_clear(INPUT_CHOICE n);
+extern "C" void fl_input_choice_clear(INPUT_CHOICE n);
-extern "C" inline int fl_input_choice_changed(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_clear_changed(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_set_changed(INPUT_CHOICE n);
-extern "C" inline int fl_input_choice_get_down_box(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_set_down_box(INPUT_CHOICE n, int t);
-extern "C" inline unsigned int fl_input_choice_get_textcolor(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_set_textcolor(INPUT_CHOICE n, unsigned int t);
-extern "C" inline int fl_input_choice_get_textfont(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_set_textfont(INPUT_CHOICE n, int t);
-extern "C" inline int fl_input_choice_get_textsize(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_set_textsize(INPUT_CHOICE n, int t);
-extern "C" inline const char * fl_input_choice_get_value(INPUT_CHOICE n);
-extern "C" inline void fl_input_choice_set_value(INPUT_CHOICE n, const char * t);
-extern "C" inline void fl_input_choice_set_value2(INPUT_CHOICE n, int t);
+extern "C" int fl_input_choice_changed(INPUT_CHOICE n);
+extern "C" void fl_input_choice_clear_changed(INPUT_CHOICE n);
+extern "C" void fl_input_choice_set_changed(INPUT_CHOICE n);
+extern "C" int fl_input_choice_get_down_box(INPUT_CHOICE n);
+extern "C" void fl_input_choice_set_down_box(INPUT_CHOICE n, int t);
+extern "C" unsigned int fl_input_choice_get_textcolor(INPUT_CHOICE n);
+extern "C" void fl_input_choice_set_textcolor(INPUT_CHOICE n, unsigned int t);
+extern "C" int fl_input_choice_get_textfont(INPUT_CHOICE n);
+extern "C" void fl_input_choice_set_textfont(INPUT_CHOICE n, int t);
+extern "C" int fl_input_choice_get_textsize(INPUT_CHOICE n);
+extern "C" void fl_input_choice_set_textsize(INPUT_CHOICE n, int t);
+extern "C" const char * fl_input_choice_get_value(INPUT_CHOICE n);
+extern "C" void fl_input_choice_set_value(INPUT_CHOICE n, const char * t);
+extern "C" void fl_input_choice_set_value2(INPUT_CHOICE n, int t);
#endif