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:
11
putty.h
11
putty.h
@ -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.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user