aboutsummaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_button.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-25 01:10:29 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-25 01:10:29 +1000
commit99ea64c2c914608d3429e63845f8ed396b234dd7 (patch)
tree767a09255183d906af68706bfd11df4787b0a5c9 /src/fltk_binding/c_fl_button.h
parent63d9e14dd0cccb2191bd18ec07cfb11d06a30fcd (diff)
Buttons and accessors
Diffstat (limited to 'src/fltk_binding/c_fl_button.h')
-rw-r--r--src/fltk_binding/c_fl_button.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_button.h b/src/fltk_binding/c_fl_button.h
index a83e3d8..21e18dc 100644
--- a/src/fltk_binding/c_fl_button.h
+++ b/src/fltk_binding/c_fl_button.h
@@ -10,6 +10,10 @@ typedef void* my_fl_button;
extern "C" my_fl_button new_fl_button(int x, int y, int w, int h, char * label);
extern "C" void free_fl_button(my_fl_button f);
+extern "C" int fl_button_get_state(my_fl_button b);
+extern "C" void fl_button_set_state(my_fl_button b, int s);
+extern "C" void fl_button_set_only(my_fl_button b);
+
#endif