summaryrefslogtreecommitdiff
path: root/c_fl_menu.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-14 14:43:10 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-14 14:43:10 +1100
commitfa595e9e5b9c7692f21df548a0d06b5a3671fbc1 (patch)
tree16f03415710455471c4a54aba002fef4676840aa /c_fl_menu.h
parentb34ef4af65403999f7e4e9c152f39cbe3744c7b5 (diff)
Edit and search menu items now grey themselves out when appropriate
Diffstat (limited to 'c_fl_menu.h')
-rw-r--r--c_fl_menu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/c_fl_menu.h b/c_fl_menu.h
index 1599334..2b9aa68 100644
--- a/c_fl_menu.h
+++ b/c_fl_menu.h
@@ -9,10 +9,13 @@ typedef void* MENU;
extern "C" int fl_menu_add(MENU m, const char * t, unsigned long s, void * c, void * u, unsigned long f);
+extern "C" const void * fl_menu_find_item(MENU m, const char * t);
extern "C" const void * fl_menu_mvalue(MENU m);
extern "C" int fl_menuitem_value(void * mi);
+extern "C" void fl_menuitem_activate(void * mi);
+extern "C" void fl_menuitem_deactivate(void * mi);
#endif