From d4520de203a8fd8816836b7f8507027cf0675f91 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 21 Sep 2016 23:34:15 +1000 Subject: More progress on the little utility window layouts --- c_fl_window.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'c_fl_window.cpp') diff --git a/c_fl_window.cpp b/c_fl_window.cpp index 5b2d0ff..9c8dbc6 100644 --- a/c_fl_window.cpp +++ b/c_fl_window.cpp @@ -35,3 +35,8 @@ void fl_window_set_label(WINDOW n, char* text) { reinterpret_cast(n)->copy_label(text); } + +void fl_window_size_range(WINDOW n, int lw, int lh, int hw, int hh, int dw, int dh, int a) { + reinterpret_cast(n)->size_range(lw, lh, hw, hh, dw, dh, a); +} + -- cgit