From 0d842f0423ba0754fb3675c7468397a8da5f6e1b Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 27 Apr 2017 10:40:48 +1000 Subject: Organising source --- c_fl_text_editor.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete 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 deleted file mode 100644 index ebaab0d..0000000 --- a/c_fl_text_editor.h +++ /dev/null @@ -1,23 +0,0 @@ - - -#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); - - -extern "C" void fl_text_editor_undo(TEXTEDITOR te); -extern "C" void fl_text_editor_cut(TEXTEDITOR te); -extern "C" void fl_text_editor_copy(TEXTEDITOR te); -extern "C" void fl_text_editor_paste(TEXTEDITOR te); -extern "C" void fl_text_editor_delete(TEXTEDITOR te); -extern "C" void fl_text_editor_remove_key_binding(TEXTEDITOR te, unsigned int k, unsigned long m); - - -#endif - -- cgit