mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Stop winutils.c from depending on the global HWND.
The GUI version of pgp_fingerprints() is now a differently named function that takes a parent HWND as a parameter, and so does my help-enabled wrapper around MessageBox.
This commit is contained in:
@ -399,7 +399,9 @@ typedef struct filereq_tag filereq; /* cwd for file requester */
|
||||
bool request_file(filereq *state, OPENFILENAME *of, bool preserve, bool save);
|
||||
filereq *filereq_new(void);
|
||||
void filereq_free(filereq *state);
|
||||
int message_box(LPCTSTR text, LPCTSTR caption, DWORD style, DWORD helpctxid);
|
||||
void pgp_fingerprints_msgbox(HWND owner);
|
||||
int message_box(HWND owner, LPCTSTR text, LPCTSTR caption,
|
||||
DWORD style, DWORD helpctxid);
|
||||
char *GetDlgItemText_alloc(HWND hwnd, int id);
|
||||
void split_into_argv(char *, int *, char ***, char ***);
|
||||
|
||||
|
Reference in New Issue
Block a user