From f15e45791a0658fd5a062629f59c4815ce8b2489 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 28 May 2016 14:53:13 +1000 Subject: Text editors, single and menu windows --- c_fl_text_editor.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 c_fl_text_editor.h (limited to 'c_fl_text_editor.h') 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 + -- cgit