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

Oleg Panashchenko's Cyrillic support patch

[originally from svn r277]
This commit is contained in:
Simon Tatham
1999-11-08 11:08:09 +00:00
parent 97994b235d
commit e913e99b40
9 changed files with 192 additions and 25 deletions

11
putty.h
View File

@ -123,6 +123,7 @@ typedef struct {
char font[64];
int fontisbold;
int fontheight;
int fontcharset;
VT_Mode vtmode;
/* Colour options */
int try_palette;
@ -131,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 +262,13 @@ void safefree(void *);
*/
extern char ver[];
/*
* 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.
*/