X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/73251d5d8f70ae9fca5775193f0c605c2ca25cee..b73fd1b14f758cc52b47b1cec9c68ba52fee70ac:/putty.h?ds=sidebyside diff --git a/putty.h b/putty.h index 6999d3e3..0636c4a1 100644 --- a/putty.h +++ b/putty.h @@ -97,6 +97,7 @@ typedef struct { int port; enum { PROT_RAW, PROT_TELNET, PROT_SSH } protocol; int close_on_exit; + int warn_on_close; /* SSH options */ int nopty; enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES } cipher; @@ -122,6 +123,7 @@ typedef struct { char font[64]; int fontisbold; int fontheight; + int fontcharset; VT_Mode vtmode; /* Colour options */ int try_palette; @@ -130,6 +132,9 @@ typedef struct { /* Selection options */ int mouse_is_xterm; short wordness[256]; + /* russian language translation */ + int xlat_enablekoiwin; + int xlat_capslockcyr; } Config; /* @@ -258,6 +263,19 @@ void safefree(void *); extern char ver[]; /* + * Exports from sizetip.c. + */ +void UpdateSizeTip(HWND src, int cx, int cy); +void EnableSizeTip(int bEnable); + +/* + * Exports from xlat.c. + */ +unsigned char xlat_kbd2tty(unsigned char c); +unsigned char xlat_tty2scr(unsigned char c); +unsigned char xlat_latkbd2win(unsigned char c); + +/* * A debug system. */ #ifdef DEBUG