summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2013-04-13 19:06:46 +0100
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2013-04-13 19:06:46 +0100
commit49e0848ce333694ca64c6694c57c62064a8090ec (patch)
treebd5d2bde54da1c86513f42466be90acf4b7c3248 /include
parent97136b9bc05c42212e330729730800d8ec241783 (diff)
Allow fetching back of scrollback from the implementation to fill the top of the screen on resize taller
Diffstat (limited to 'include')
-rw-r--r--include/vterm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vterm.h b/include/vterm.h
index b65ffa1..6578899 100644
--- a/include/vterm.h
+++ b/include/vterm.h
@@ -227,6 +227,7 @@ typedef struct {
int (*bell)(void *user);
int (*resize)(int rows, int cols, void *user);
int (*sb_pushline)(int cols, const VTermScreenCell *cells, void *user);
+ int (*sb_popline)(int cols, VTermScreenCell *cells, void *user);
} VTermScreenCallbacks;
VTermScreen *vterm_obtain_screen(VTerm *vt);