2 * font.h -- `Soft' font definitions
4 * Created 1995 by Geert Uytterhoeven
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
14 #include <linux/types.h>
26 #define PEARL8x8_IDX 2
28 #define FONT7x14_IDX 4
29 #define FONT10x18_IDX 5
31 #define SUN12x22_IDX 7
32 #define ACORN8x8_IDX 8
35 extern const struct font_desc font_vga_8x8,
46 /* Find a font with a specific name */
48 extern const struct font_desc *find_font(const char *name);
50 /* Get the default font for a specific screen size */
52 extern const struct font_desc *get_default_font(int xres, int yres);
54 /* Max. length for the name of a predefined font */
55 #define MAX_FONT_NAME 32
57 #endif /* _VIDEO_FONT_H */