1 /* 2 * font.h -- `Soft' font definitions 3 * 4 * Created 1995 by Geert Uytterhoeven 5 * 6 * This file is subject to the terms and conditions of the GNU General Public 7 * License. See the file COPYING in the main directory of this archive 8 * for more details. 9 */ 10 11 #ifndef _XEN_FONT_H 12 #define _XEN_FONT_H 13 14 struct font_desc { 15 const char *name; 16 unsigned width, height, count; 17 const void *data; 18 }; 19 20 extern const struct font_desc font_vga_8x8, font_vga_8x14, font_vga_8x16; 21 22 #endif /* _XEN_FONT_H */ 23