From d12fdd75d1c131bbe4bd49413c3da51131cd1e73 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 19 Sep 2016 18:48:47 +1000 Subject: All File/Edit functions working, just need to add Search/About menu stuff --- c_fl_text_editor.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'c_fl_text_editor.h') diff --git a/c_fl_text_editor.h b/c_fl_text_editor.h index 7c7cee5..8c7dba0 100644 --- a/c_fl_text_editor.h +++ b/c_fl_text_editor.h @@ -11,10 +11,11 @@ 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_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_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); #endif -- cgit