summaryrefslogtreecommitdiff
path: root/include/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/video.h')
-rw-r--r--include/video.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/video.h b/include/video.h
index efcc682a293..8b3799b0b05 100644
--- a/include/video.h
+++ b/include/video.h
@@ -15,5 +15,11 @@ int video_init (void *videobase);
void video_putc (const char c);
void video_puts (const char *s);
void video_printf (const char *fmt, ...);
+void video_position_cursor (unsigned col, unsigned row);
+int video_display_bitmap (ulong, int, int);
+int video_get_screen_rows (void);
+int video_get_screen_columns (void);
+int video_get_pixel_width (void);
+int video_get_pixel_height(void);
#endif