summaryrefslogtreecommitdiff
path: root/src/c_fl_toggle_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_toggle_button.h')
-rw-r--r--src/c_fl_toggle_button.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/c_fl_toggle_button.h b/src/c_fl_toggle_button.h
new file mode 100644
index 0000000..ed86ed4
--- /dev/null
+++ b/src/c_fl_toggle_button.h
@@ -0,0 +1,15 @@
+
+
+#ifndef FL_TOGGLE_BUTTON_GUARD
+#define FL_TOGGLE_BUTTON_GUARD
+
+
+typedef void* TOGGLEBUTTON;
+
+
+extern "C" TOGGLEBUTTON new_fl_toggle_button(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_toggle_button(TOGGLEBUTTON b);
+
+
+#endif
+