X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/514702987c9252fcb0ab98882a6603b3bd0505ce..c7f9fab3e31e5211af4acf49c90a589f00261357:/terminal.h diff --git a/terminal.h b/terminal.h index 792f89b4..727f8429 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]; @@ -160,6 +161,14 @@ struct terminal_tag { void (*resize_fn)(void *, int, int); void *resize_ctx; + + void *ldisc; + + void *frontend; + + void *logctx; + + Config *cfg; }; #define in_utf(term) ((term)->utf || line_codepage==CP_UTF8)