diff options
Diffstat (limited to 'src/c_fl_help_dialog.cpp')
-rw-r--r-- | src/c_fl_help_dialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/c_fl_help_dialog.cpp b/src/c_fl_help_dialog.cpp index 9888df9..5eb719e 100644 --- a/src/c_fl_help_dialog.cpp +++ b/src/c_fl_help_dialog.cpp @@ -26,6 +26,10 @@ void fl_help_dialog_show(HELPDIALOG d) { reinterpret_cast<Fl_Help_Dialog*>(d)->show(); } +void fl_help_dialog_show2(HELPDIALOG d, int c, void * v) { + reinterpret_cast<Fl_Help_Dialog*>(d)->show(c, static_cast<char**>(v)); +} + void fl_help_dialog_hide(HELPDIALOG d) { reinterpret_cast<Fl_Help_Dialog*>(d)->hide(); } |