diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-11-22 14:41:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-11-22 14:41:12 +0000 |
commit | 01495edec5eadd83d063278c57226d5fda3069e5 (patch) | |
tree | d31b1beb40baee8a3fae4d711a5370dbf25961f8 /usr.bin/tmux/tmux.h | |
parent | e97fc3e897c4b8091e749b6054b3425c3ff1ba24 (diff) |
Put helper function back, will be needed in a bit.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 159ecc7574c..62b7e47223f 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.363 2012/11/22 14:26:04 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.364 2012/11/22 14:41:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1193,7 +1193,7 @@ struct tty { struct client *client; char *path; - u_int service_class; + u_int class; u_int sx; u_int sy; @@ -1637,6 +1637,7 @@ void tty_pututf8(struct tty *, const struct grid_utf8 *); void tty_init(struct tty *, struct client *, int, char *); int tty_resize(struct tty *); int tty_set_size(struct tty *, u_int, u_int); +void tty_set_class(struct tty *, u_int); void tty_start_tty(struct tty *); void tty_stop_tty(struct tty *); void tty_set_title(struct tty *, const char *); |