summaryrefslogtreecommitdiffstats
path: root/ui/ncurses/nc-scr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/ncurses/nc-scr.c')
-rw-r--r--ui/ncurses/nc-scr.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/ui/ncurses/nc-scr.c b/ui/ncurses/nc-scr.c
index c6172e1..e8c5fca 100644
--- a/ui/ncurses/nc-scr.c
+++ b/ui/ncurses/nc-scr.c
@@ -40,6 +40,20 @@ static void nc_scr_status_draw(struct nc_scr *scr)
scr->frame.status);
}
+int nc_scr_post(struct nc_scr *scr)
+{
+ if (scr->post)
+ return scr->post(scr);
+ return 0;
+}
+
+int nc_scr_unpost(struct nc_scr *scr)
+{
+ if (scr->unpost)
+ return scr->unpost(scr);
+ return 0;
+}
+
void nc_scr_frame_draw(struct nc_scr *scr)
{
int ltitle_len, rtitle_len;
OpenPOWER on IntegriCloud