aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tbi/win.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tbi/win.c')
-rw-r--r--lib/tbi/win.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/tbi/win.c b/lib/tbi/win.c
index bf674a2..9129403 100644
--- a/lib/tbi/win.c
+++ b/lib/tbi/win.c
@@ -106,3 +106,14 @@ VOID wattroff(struct window *w)
w->cur_attr = w->scr->attr;
}
+
+BOOLEAN wmove(struct window *w, INT32 x, INT32 y)
+{
+ ASSERT(w != NULL);
+ CHECK_POSITION(w, x, y);
+
+ w->curx = x;
+ w->cury = y;
+ return TRUE;
+}
+