diff options
author | Joursoir <chat@joursoir.net> | 2021-11-04 03:21:06 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-11-04 03:21:06 +0300 |
commit | 854718a302d46a588bd2aa1a62664569b6f41553 (patch) | |
tree | c0f04217de52e54d9ac402760d817da82296126f /lib/tbi/win.h | |
parent | a5f15c8e9db0dc8e6a782392b4ed91ccee3eff98 (diff) | |
download | ufm-854718a302d46a588bd2aa1a62664569b6f41553.tar.gz ufm-854718a302d46a588bd2aa1a62664569b6f41553.tar.bz2 ufm-854718a302d46a588bd2aa1a62664569b6f41553.zip |
tbi/win: make wrefresh()
Diffstat (limited to 'lib/tbi/win.h')
-rw-r--r-- | lib/tbi/win.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/tbi/win.h b/lib/tbi/win.h index 3c42538..76be2d8 100644 --- a/lib/tbi/win.h +++ b/lib/tbi/win.h @@ -174,4 +174,13 @@ UINTN EFIAPI mvwprintf(struct window *w, INT32 x, INT32 y, CONST CHAR16 *fmt, .. */ UINTN EFIAPI wvprintf(struct window *w, CONST CHAR16 *fmt, VA_LIST args); +/* + * Does the output of window to the terminal + * + * w: the window on which to operate + * + * return: VOID +*/ +VOID wrefresh(struct window *w); + #endif /* UFM_TBI_WINDOW_H */ |