diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
commit | b4438b2fbe895694be98e6e8426103deefc51448 (patch) | |
tree | 760d86cd7c06420a91dad102cc9546aee73146fc /src/c_fl_help_dialog.h | |
parent | a4703a65b015140cd4a7a985db66264875ade734 (diff) |
Split public API and private implementation files into different directories
Diffstat (limited to 'src/c_fl_help_dialog.h')
-rw-r--r-- | src/c_fl_help_dialog.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/c_fl_help_dialog.h b/src/c_fl_help_dialog.h deleted file mode 100644 index ddabce8..0000000 --- a/src/c_fl_help_dialog.h +++ /dev/null @@ -1,47 +0,0 @@ - - -// Programmed by Jedidiah Barber -// Released into the public domain - - -#ifndef FL_HELP_DIALOG_GUARD -#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); - - -extern "C" void fl_help_dialog_set_topline_number(HELPDIALOG d, int n); -extern "C" void fl_help_dialog_set_topline_target(HELPDIALOG d, const char * t); - - -extern "C" void fl_help_dialog_load(HELPDIALOG d, const char * n); -extern "C" const char * fl_help_dialog_get_value(HELPDIALOG d); -extern "C" void fl_help_dialog_set_value(HELPDIALOG d, const char * v); - - -extern "C" int fl_help_dialog_get_textsize(HELPDIALOG d); -extern "C" void fl_help_dialog_set_textsize(HELPDIALOG d, int s); - - -extern "C" int fl_help_dialog_get_x(HELPDIALOG d); -extern "C" int fl_help_dialog_get_y(HELPDIALOG d); -extern "C" int fl_help_dialog_get_w(HELPDIALOG d); -extern "C" int fl_help_dialog_get_h(HELPDIALOG d); -extern "C" void fl_help_dialog_resize(HELPDIALOG d, int xx, int yy, int ww, int hh); -extern "C" void fl_help_dialog_position(HELPDIALOG d, int xx, int yy); - - -#endif - - |