diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-25 23:16:05 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-25 23:16:05 -0500 |
commit | cc595a73cf45ee8b0f0444b844b10bc021d02572 (patch) | |
tree | 36fe8c084d1eec983dcdbddec4dffe83f4e0d92a /sys/include/dev/vcons/vcons.h | |
parent | 042899885e610554e28cb673a1b0b10cc8b93ea7 (diff) |
kernel: vcons: Add cursor support
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/dev/vcons/vcons.h')
-rw-r--r-- | sys/include/dev/vcons/vcons.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/dev/vcons/vcons.h b/sys/include/dev/vcons/vcons.h index fc59f6e..737651f 100644 --- a/sys/include/dev/vcons/vcons.h +++ b/sys/include/dev/vcons/vcons.h @@ -67,5 +67,6 @@ struct vcons_screen { void vcons_attach(struct vcons_screen *scr); int vcons_putch(struct vcons_screen *scr, char c); +void vcons_update_cursor(struct vcons_screen *scr); #endif /* !_DEV_VCONS_H_ */ |