1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 12:02:47 -05:00

Retire another global in favour of adding a feature to the

terminal.c interface.

[originally from svn r2148]
This commit is contained in:
Simon Tatham
2002-10-26 14:06:52 +00:00
parent 4756c15fc9
commit ea429ee71a
3 changed files with 8 additions and 11 deletions

View File

@ -92,8 +92,6 @@ typedef struct terminal_tag Terminal;
#define ATTR_CUR_AND (~(ATTR_BOLD|ATTR_REVERSE|ATTR_BLINK|ATTR_COLOURS))
#define ATTR_CUR_XOR 0x00BA0000UL
GLOBAL int alt_pressed;
GLOBAL int session_closed;
GLOBAL int nsessions;
@ -458,7 +456,7 @@ void registry_cleanup(void);
Terminal *term_init(void *frontend);
void term_size(Terminal *, int, int, int);
void term_out(Terminal *);
void term_paint(Terminal *, Context, int, int, int, int);
void term_paint(Terminal *, Context, int, int, int, int, int);
void term_scroll(Terminal *, int, int);
void term_pwron(Terminal *);
void term_clrsb(Terminal *);