summaryrefslogtreecommitdiff
path: root/c_fl_text_editor.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-28 14:53:13 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-28 14:53:13 +1000
commitf15e45791a0658fd5a062629f59c4815ce8b2489 (patch)
treeed455c095cba8777b8a9a0c6dfe7b994023c5cd1 /c_fl_text_editor.h
parent32062c660307d5b34f46b1f7b75d17a184930e71 (diff)
Text editors, single and menu windows
Diffstat (limited to 'c_fl_text_editor.h')
-rw-r--r--c_fl_text_editor.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/c_fl_text_editor.h b/c_fl_text_editor.h
new file mode 100644
index 0000000..2eda9f3
--- /dev/null
+++ b/c_fl_text_editor.h
@@ -0,0 +1,15 @@
+
+
+#ifndef FL_TEXT_EDITOR_GUARD
+#define FL_TEXT_EDITOR_GUARD
+
+
+typedef void* TEXTEDITOR;
+
+
+extern "C" TEXTEDITOR new_fl_text_editor(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_text_editor(TEXTEDITOR te);
+
+
+#endif
+