mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Store xpixel/ypixel from TIOCGWINSZ and add formats.
This commit is contained in:
4
tmux.h
4
tmux.h
@ -1148,6 +1148,8 @@ struct tty {
|
||||
|
||||
u_int sx;
|
||||
u_int sy;
|
||||
u_int xpixel;
|
||||
u_int ypixel;
|
||||
|
||||
u_int cx;
|
||||
u_int cy;
|
||||
@ -1927,7 +1929,7 @@ void tty_putc(struct tty *, u_char);
|
||||
void tty_putn(struct tty *, const void *, size_t, u_int);
|
||||
int tty_init(struct tty *, struct client *, int, char *);
|
||||
void tty_resize(struct tty *);
|
||||
void tty_set_size(struct tty *, u_int, u_int);
|
||||
void tty_set_size(struct tty *, u_int, u_int, u_int, u_int);
|
||||
void tty_start_tty(struct tty *);
|
||||
void tty_stop_tty(struct tty *);
|
||||
void tty_set_title(struct tty *, const char *);
|
||||
|
Reference in New Issue
Block a user