diff options
Diffstat (limited to 'src/c_fl_gl_window.cpp')
-rw-r--r-- | src/c_fl_gl_window.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/c_fl_gl_window.cpp b/src/c_fl_gl_window.cpp index 1bcd616..70ba7e3 100644 --- a/src/c_fl_gl_window.cpp +++ b/src/c_fl_gl_window.cpp @@ -65,6 +65,10 @@ void fl_gl_window_show(GLWINDOW w) { reinterpret_cast<Fl_Gl_Window*>(w)->show(); } +void fl_gl_window_show2(GLWINDOW w, int c, void * v) { + reinterpret_cast<Fl_Gl_Window*>(w)->show(c, static_cast<char**>(v)); +} + void fl_gl_window_hide(GLWINDOW w) { reinterpret_cast<Fl_Gl_Window*>(w)->hide(); } |