aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/vga.h
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-08-15 11:16:44 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-08-15 11:16:44 +0100
commit21bee178702115be95216855235b902a59bf856a (patch)
tree0837654807e6310aff2b9562d985a01f6ab65222 /xen/include/xen/vga.h
parent13451be1da714dc48351e091b02a984a25170eeb (diff)
downloadxen-21bee178702115be95216855235b902a59bf856a.tar.gz
xen-21bee178702115be95216855235b902a59bf856a.tar.bz2
xen-21bee178702115be95216855235b902a59bf856a.zip
Support for vga text modes bigger than 80x25.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/include/xen/vga.h')
-rw-r--r--xen/include/xen/vga.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/xen/include/xen/vga.h b/xen/include/xen/vga.h
new file mode 100644
index 0000000000..9f2ed28144
--- /dev/null
+++ b/xen/include/xen/vga.h
@@ -0,0 +1,19 @@
+/*
+ * vga.h
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file COPYING in the main directory of this archive
+ * for more details.
+ */
+
+#ifndef _XEN_VGA_H
+#define _XEN_VGA_H
+
+struct font_desc;
+
+int detect_vga(void);
+void *setup_vga(void);
+void vga_cursor_off(void);
+int vga_load_font(const struct font_desc *, unsigned rows);
+
+#endif /* _XEN_VGA_H */