Oleg Panashchenko's Cyrillic support patch
[u/mdw/putty] / putty.h
diff --git a/putty.h b/putty.h
index fcbb878..42c8592 100644 (file)
--- a/putty.h
+++ b/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;
 
 /*
@@ -259,6 +263,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.
  */
 #ifdef DEBUG