1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-15 18:17:32 -05:00

Fix for pageant-dirhandle': a new wrapper functions request_file()' maintains

a separate CWD for the file requester, so that when the Open File box is not
open Pageant should stay where it was started.
(Also some other minor cleanups in this area of Pageant.)

[originally from svn r5413]
[this svn revision also touched putty-wishlist]
This commit is contained in:
Jacob Nevins
2005-02-28 02:40:43 +00:00
parent c81aca2126
commit d7b50f8066
3 changed files with 93 additions and 35 deletions

View File

@ -173,6 +173,10 @@ struct ctlpos {
/*
* Exports from winutils.c.
*/
typedef struct filereq_tag filereq; /* cwd for file requester */
BOOL request_file(filereq *state, OPENFILENAME *of, int preserve, int save);
filereq *filereq_new(void);
void filereq_free(filereq *state);
void split_into_argv(char *, int *, char ***, char ***);
/*