diff options
Diffstat (limited to 'c_fl_text_editor.h')
-rw-r--r-- | c_fl_text_editor.h | 15 |
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 + |