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_window.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'c_fl_window.cpp') diff --git a/c_fl_window.cpp b/c_fl_window.cpp index f409e34..5b2d0ff 100644 --- a/c_fl_window.cpp +++ b/c_fl_window.cpp @@ -25,3 +25,13 @@ void fl_window_show(WINDOW n) { reinterpret_cast(n)->show(); } + +void fl_window_hide(WINDOW n) { + reinterpret_cast(n)->hide(); +} + + +void fl_window_set_label(WINDOW n, char* text) { + reinterpret_cast(n)->copy_label(text); +} + -- cgit