X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=terminal.h;h=2ed9e6ef5e74900e999285f4799063a7fb4c4cee;hb=refs%2Fheads%2F0.68%2Bkerberos-fix;hp=9f0561124c0bfff58ab0534ba882ce94182caba1;hpb=7be9af74ec8b97f948d6b3d67ebaf1a97138da33;p=PuTTY.git diff --git a/terminal.h b/terminal.h index 9f056112..2ed9e6ef 100644 --- a/terminal.h +++ b/terminal.h @@ -172,7 +172,7 @@ struct terminal_tag { #define ARGS_MAX 32 /* max # of esc sequence arguments */ #define ARG_DEFAULT 0 /* if an arg isn't specified */ #define def(a,d) ( (a) == ARG_DEFAULT ? (d) : (a) ) - int esc_args[ARGS_MAX]; + unsigned esc_args[ARGS_MAX]; int esc_nargs; int esc_query; #define ANSI(x,y) ((x)+((y)<<8)) @@ -223,7 +223,6 @@ struct terminal_tag { wchar_t *paste_buffer; int paste_len, paste_pos; - Terminal *paste_timer_ctx; void (*resize_fn)(void *, int, int); void *resize_ctx; @@ -316,6 +315,7 @@ struct terminal_tag { int no_remote_charset; int no_remote_resize; int no_remote_wintitle; + int no_remote_clearscroll; int rawcnp; int rect_select; int remote_qtitle_action;