mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-13 09:07:33 -05:00
Reintroduce Cyrillic Caps Lock mode, which was in 0.51 but got
kicked out by the Unicode patch. It's not very good - only works sanely on US keyboards - but it's no worse than it was in 0.51. After 0.52 maybe I should fix it properly. [originally from svn r1273]
This commit is contained in:
2
putty.h
2
putty.h
@ -341,6 +341,7 @@ typedef struct {
|
||||
/* translations */
|
||||
VT_Mode vtmode;
|
||||
char line_codepage[32];
|
||||
int xlat_capslockcyr;
|
||||
/* X11 forwarding */
|
||||
int x11_forward;
|
||||
char x11_display[128];
|
||||
@ -541,6 +542,7 @@ void EnableSizeTip(int bEnable);
|
||||
void init_ucs_tables(void);
|
||||
void lpage_send(int codepage, char *buf, int len);
|
||||
void luni_send(wchar_t * widebuf, int len);
|
||||
wchar_t xlat_uskbd2cyrllic(int ch);
|
||||
int check_compose(int first, int second);
|
||||
int decode_codepage(char *cp_name);
|
||||
char *cp_enumerate (int index);
|
||||
|
Reference in New Issue
Block a user