mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 11:32:48 -05:00
At last! After much delay, much faffing back and forth, and much
enhancement and fiddling, I have now massaged Arabeyes' first patch into a form I'm happy to check in. Phew. [originally from svn r4236]
This commit is contained in:
12
putty.h
12
putty.h
@ -428,6 +428,8 @@ struct config_tag {
|
||||
int window_border;
|
||||
char answerback[256];
|
||||
char printer[128];
|
||||
int arabicshaping;
|
||||
int bidi;
|
||||
/* Colour options */
|
||||
int system_colour;
|
||||
int try_palette;
|
||||
@ -830,6 +832,16 @@ struct controlbox;
|
||||
void setup_config_box(struct controlbox *b, struct sesslist *sesslist,
|
||||
int midsession, int protocol);
|
||||
|
||||
/*
|
||||
* Exports from minibidi.c.
|
||||
*/
|
||||
typedef struct bidi_char {
|
||||
wchar_t origwc, wc;
|
||||
unsigned short index;
|
||||
} bidi_char;
|
||||
int do_bidi(bidi_char *line, int count);
|
||||
int do_shape(bidi_char *line, bidi_char *to, int count);
|
||||
|
||||
/*
|
||||
* X11 auth mechanisms we know about.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user