From 74cb50a7f7e14cec7195d30e50b76e17969c9e62 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Mon, 13 Jan 2025 12:29:26 +1300 Subject: Help_Dialog now has Show_With_Args --- src/c_fl_help_dialog.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/c_fl_help_dialog.cpp') 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(d)->show(); } +void fl_help_dialog_show2(HELPDIALOG d, int c, void * v) { + reinterpret_cast(d)->show(c, static_cast(v)); +} + void fl_help_dialog_hide(HELPDIALOG d) { reinterpret_cast(d)->hide(); } -- cgit