diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-13 12:29:26 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-13 12:29:26 +1300 |
commit | 74cb50a7f7e14cec7195d30e50b76e17969c9e62 (patch) | |
tree | 4d3941218bb7099bb317fbbb88dfb698a990161b /src/c_fl_help_dialog.h | |
parent | 36302e60475e3531d5034fd97cc87aabb9fbd588 (diff) |
Help_Dialog now has Show_With_Args
Diffstat (limited to 'src/c_fl_help_dialog.h')
-rw-r--r-- | src/c_fl_help_dialog.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/c_fl_help_dialog.h b/src/c_fl_help_dialog.h index 03846c2..ddabce8 100644 --- a/src/c_fl_help_dialog.h +++ b/src/c_fl_help_dialog.h @@ -8,20 +8,15 @@ #define FL_HELP_DIALOG_GUARD - - typedef void* HELPDIALOG; - - extern "C" HELPDIALOG new_fl_help_dialog(); extern "C" void free_fl_help_dialog(HELPDIALOG d); - - extern "C" void fl_help_dialog_show(HELPDIALOG d); +extern "C" void fl_help_dialog_show2(HELPDIALOG d, int c, void * v); extern "C" void fl_help_dialog_hide(HELPDIALOG d); extern "C" int fl_help_dialog_visible(HELPDIALOG d); |