X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/2df34b4321465f778e00edfdd2b44ae8f3d2dc8f..68a49acbf3f96fbbbc385620655dcb577e62c328:/terminal.h?ds=sidebyside diff --git a/terminal.h b/terminal.h index 04217fc4..4f6b6e72 100644 --- a/terminal.h +++ b/terminal.h @@ -94,6 +94,7 @@ struct terminal_tag { long last_tblink; int xterm_mouse; /* send mouse messages to app */ + int mouse_is_down; /* used while tracking mouse buttons */ unsigned long cset_attr[2]; @@ -157,6 +158,15 @@ struct terminal_tag { wchar_t *paste_buffer; int paste_len, paste_pos, paste_hold; long last_paste; + + void (*resize_fn)(void *, int, int); + void *resize_ctx; + + void *ldisc; + + void *frontend; + + void *logctx; }; #define in_utf(term) ((term)->utf || line_codepage==CP_UTF8)