X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/9bb8630af3373e7bbf594bfeda731585684e1b69..f0fccd51c27b5cbe8990e625a7bdcf9972142d1f:/terminal.h diff --git a/terminal.h b/terminal.h index c3ee216f..e2b06b19 100644 --- a/terminal.h +++ b/terminal.h @@ -208,6 +208,14 @@ struct terminal_tag { * through. */ int in_term_out; + + /* + * These are buffers used by the bidi and Arabic shaping code. + */ + unsigned long *ltemp; + bidi_char *wcFrom, *wcTo; + unsigned long **pre_bidi_cache, **post_bidi_cache; + int bidi_cache_size; }; #define in_utf(term) ((term)->utf || (term)->ucsdata->line_codepage==CP_UTF8)