mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Expose the structure tag 'dlgparam'.
This continues my ongoing crusade against dangerous 'void *' parameters.
This commit is contained in:
10
putty.h
10
putty.h
@ -1421,16 +1421,16 @@ void cmdline_error(const char *, ...);
|
||||
*/
|
||||
struct controlbox;
|
||||
union control;
|
||||
void conf_radiobutton_handler(union control *ctrl, void *dlg,
|
||||
void conf_radiobutton_handler(union control *ctrl, dlgparam *dlg,
|
||||
void *data, int event);
|
||||
#define CHECKBOX_INVERT (1<<30)
|
||||
void conf_checkbox_handler(union control *ctrl, void *dlg,
|
||||
void conf_checkbox_handler(union control *ctrl, dlgparam *dlg,
|
||||
void *data, int event);
|
||||
void conf_editbox_handler(union control *ctrl, void *dlg,
|
||||
void conf_editbox_handler(union control *ctrl, dlgparam *dlg,
|
||||
void *data, int event);
|
||||
void conf_filesel_handler(union control *ctrl, void *dlg,
|
||||
void conf_filesel_handler(union control *ctrl, dlgparam *dlg,
|
||||
void *data, int event);
|
||||
void conf_fontsel_handler(union control *ctrl, void *dlg,
|
||||
void conf_fontsel_handler(union control *ctrl, dlgparam *dlg,
|
||||
void *data, int event);
|
||||
void setup_config_box(struct controlbox *b, int midsession,
|
||||
int protocol, int protcfginfo);
|
||||
|
Reference in New Issue
Block a user