summaryrefslogtreecommitdiff
path: root/body/c_fl_box.h
diff options
context:
space:
mode:
Diffstat (limited to 'body/c_fl_box.h')
-rw-r--r--body/c_fl_box.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/body/c_fl_box.h b/body/c_fl_box.h
new file mode 100644
index 0000000..5143c3f
--- /dev/null
+++ b/body/c_fl_box.h
@@ -0,0 +1,25 @@
+
+
+// Programmed by Jedidiah Barber
+// Released into the public domain
+
+
+#ifndef FL_BOX_GUARD
+#define FL_BOX_GUARD
+
+
+typedef void* BOX;
+
+
+extern "C" BOX new_fl_box(int x, int y, int w, int h, char * label);
+extern "C" BOX new_fl_box2(int k, int x, int y, int w, int h, char * label);
+extern "C" void free_fl_box(BOX b);
+
+
+extern "C" void fl_box_draw(BOX n);
+extern "C" int fl_box_handle(BOX n, int e);
+
+
+#endif
+
+