summaryrefslogtreecommitdiff
path: root/c_fl_menu_bar.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-07-19 22:40:37 +1000
committerJed Barber <jjbarber@y7mail.com>2016-07-19 22:40:37 +1000
commitab25b51036a810c326b51a230700971c0f431f74 (patch)
tree15022810b1045502d66b1aaebe7911b4968a907a /c_fl_menu_bar.h
parent6aa9475d598065081866913bb86a049a6d2d0c1a (diff)
Starting to sketch the outline of menu widgets and callbacks
Diffstat (limited to 'c_fl_menu_bar.h')
-rw-r--r--c_fl_menu_bar.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/c_fl_menu_bar.h b/c_fl_menu_bar.h
new file mode 100644
index 0000000..a09d22b
--- /dev/null
+++ b/c_fl_menu_bar.h
@@ -0,0 +1,15 @@
+
+
+#ifndef FL_MENU_BAR_GUARD
+#define FL_MENU_BAR_GUARD
+
+
+typedef void* MENUBAR;
+
+
+extern "C" MENUBAR new_fl_menu_bar(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_menu_bar(MENUBAR m);
+
+
+#endif
+