summaryrefslogtreecommitdiff
path: root/src/c_fl_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_button.h')
-rw-r--r--src/c_fl_button.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/c_fl_button.h b/src/c_fl_button.h
index 9c3ecad..f644a50 100644
--- a/src/c_fl_button.h
+++ b/src/c_fl_button.h
@@ -15,12 +15,6 @@ extern "C" void fl_button_extra_final(void * adaobj);
typedef void* BUTTON;
-extern "C" void button_set_draw_hook(BUTTON b, void * d);
-extern "C" void fl_button_draw(BUTTON b);
-extern "C" void button_set_handle_hook(BUTTON b, void * h);
-extern "C" int fl_button_handle(BUTTON b, int e);
-
-
extern "C" BUTTON new_fl_button(int x, int y, int w, int h, char* label);
extern "C" void free_fl_button(BUTTON b);
@@ -36,6 +30,13 @@ extern "C" int fl_button_get_shortcut(BUTTON b);
extern "C" void fl_button_set_shortcut(BUTTON b, int k);
+extern "C" void fl_button_draw(BUTTON b);
+extern "C" int fl_button_handle(BUTTON b, int e);
+
+
+extern "C" void fl_button_simulate_key_action(BUTTON b);
+
+
#endif