X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/ec55b2200b3a40631648cfa02ed63207b58832fe..5b44a37ede95c1fb3ebc0c232dd59f22e6e08743:/putty.h?ds=sidebyside diff --git a/putty.h b/putty.h index 88437d88..1f6e5d21 100644 --- a/putty.h +++ b/putty.h @@ -18,8 +18,6 @@ #define GLOBAL extern #endif -GLOBAL HINSTANCE putty_inst; - #define ATTR_ACTCURS 0x80000000UL /* active cursor (block) */ #define ATTR_PASCURS 0x40000000UL /* passive cursor (box) */ #define ATTR_INVALID 0x20000000UL @@ -147,6 +145,7 @@ typedef struct { enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES } cipher; char keyfile[FILENAME_MAX]; int sshprot; /* use v1 or v2 when both available */ + int buggymac; /* MAC bug commmercial <=v2.3.x SSH2 */ int try_tis_auth; /* Telnet options */ char termtype[32]; @@ -194,6 +193,7 @@ typedef struct { VT_Mode vtmode; int xlat_enablekoiwin; int xlat_88592w1250; + int xlat_88592cp852; int xlat_capslockcyr; } Config; @@ -267,6 +267,7 @@ void random_destroy_seed(void); /* * Exports from windlg.c. */ +void defuse_showwindow(void); int do_config (void); int do_reconfig (HWND); void do_defaults (char *, Config *);