diff options
author | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2018-01-08 12:20:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 12:20:20 +0100 |
commit | a6663c58d4364c371e82d718f0ed5460df6d8b36 (patch) | |
tree | 679808d4b01e904e625a7873200383e914a67434 /src/fe-text/term.h | |
parent | f83ba5a5bb1f42384ba06710fc074e960f0a662f (diff) | |
parent | ded4e4d98df3c8df20119574c145fe1a736ee994 (diff) | |
download | irssi-a6663c58d4364c371e82d718f0ed5460df6d8b36.zip |
Merge pull request #697 from ailin-nemui/rsplit
sideways split support for Irssi
Diffstat (limited to 'src/fe-text/term.h')
-rw-r--r-- | src/fe-text/term.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fe-text/term.h b/src/fe-text/term.h index 4b1e2874..f25154c2 100644 --- a/src/fe-text/term.h +++ b/src/fe-text/term.h @@ -85,6 +85,8 @@ void term_addch(TERM_WINDOW *window, char chr); void term_add_unichar(TERM_WINDOW *window, unichar chr); int term_addstr(TERM_WINDOW *window, const char *str); void term_clrtoeol(TERM_WINDOW *window); +void term_window_clrtoeol(TERM_WINDOW* window, int ypos); +void term_window_clrtoeol_abs(TERM_WINDOW* window, int ypos_abs); void term_move_cursor(int x, int y); |