X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/de3df031561a6109e98e18cafd336c82600fac77..277ab4522131130e876b5ea8432217f93fc136f4:/putty.h diff --git a/putty.h b/putty.h index 1ab5b99e..40dd8cb8 100644 --- a/putty.h +++ b/putty.h @@ -115,6 +115,7 @@ typedef struct { void (*special) (Telnet_Special code); SOCKET (*socket) (void); int (*sendok) (void); + int default_port; } Backend; GLOBAL Backend *back; @@ -163,6 +164,7 @@ typedef struct { int alt_space; /* is it special? */ int ldisc_term; int scroll_on_key; + char wintitle[256]; /* initial window title */ /* Terminal options */ int savelines; int dec_om; @@ -249,6 +251,7 @@ void connection_fatal(char *, ...); void fatalbox (char *, ...); void beep (int); void begin_session(void); +void sys_cursor(int x, int y); #define OPTIMISE_IS_SCROLL 1 /* @@ -269,7 +272,8 @@ void do_defaults (char *); void logevent (char *); void showeventlog (HWND); void showabout (HWND); -void verify_ssh_host_key(char *host, char *keystr); +void verify_ssh_host_key(char *host, int port, char *keytype, + char *keystr, char *fingerprint); void get_sesslist(int allocate); void registry_cleanup(void);