X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/3d9a14c979f7e4f08284a6eba67112981a820c5b..e9483e66afd11af8cba32154315d0004ecf3c019:/putty.h?ds=sidebyside diff --git a/putty.h b/putty.h index 83520f27..7e7eca61 100644 --- a/putty.h +++ b/putty.h @@ -62,6 +62,17 @@ GLOBAL int has_focus; GLOBAL int app_cursor_keys, app_keypad_keys; +GLOBAL int seen_key_event; +GLOBAL int seen_disp_event; + +typedef enum { + US_NONE = 0, US_KEY = 1, US_DISP = 2, US_BOTH = 3 +} Unscroll_Trigger; + +GLOBAL Unscroll_Trigger unscroll_event; + +GLOBAL char *logfile; + #define WM_NETEVENT (WM_USER + 1) typedef enum { @@ -145,6 +156,7 @@ typedef struct { short wordness[256]; /* russian language translation */ int xlat_enablekoiwin; + int xlat_88592w1250; int xlat_capslockcyr; } Config; @@ -163,6 +175,8 @@ GLOBAL Config cfg; GLOBAL int default_protocol; GLOBAL int default_port; +struct RSAKey; /* be a little careful of scope */ + /* * Exports from window.c. */