1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-06 22:12:47 -05:00

Having created and used uxsel, it actually turns out to be

practically trivial to put all the pieces together and create a
working prototype of Unix PuTTY! It's missing a lot of things -
notably GUI request boxes for host keys and logfiles and so forth,
the Event Log, mid-session reconfiguration, session loading and
saving, sensible population of the character sets drop-down list and
probably other fiddly little things too - but it will put up a
config box and then create a GUI window containing an SSH connection
to the host you specified, so it's _basically_ there. Woo!

[originally from svn r3020]
This commit is contained in:
Simon Tatham
2003-03-29 19:52:50 +00:00
parent 54aff83bf0
commit a3428ae953
6 changed files with 322 additions and 21 deletions

View File

@ -84,6 +84,7 @@ static int pty_exit_code;
static struct utmp utmp_entry;
#endif
char **pty_argv;
int use_pty_argv = TRUE;
static void pty_close(void);