summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_menu_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_menu_button.h')
-rw-r--r--src/fltk_binding/c_fl_menu_button.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_menu_button.h b/src/fltk_binding/c_fl_menu_button.h
new file mode 100644
index 0000000..8c089b6
--- /dev/null
+++ b/src/fltk_binding/c_fl_menu_button.h
@@ -0,0 +1,18 @@
+
+
+#ifndef FL_MENU_BUTTON_GUARD
+#define FL_MENU_BUTTON_GUARD
+
+
+typedef void* MENUBUTTON;
+
+
+extern "C" MENUBUTTON new_fl_menu_button(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_menu_button(MENUBUTTON m);
+
+
+extern "C" void fl_menu_button_type(MENUBUTTON m, unsigned int t);
+
+
+#endif
+