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
36 extern const struct font_desc font_vga_8x8,
48 /* Find a font with a specific name */
50 extern const struct font_desc *find_font(const char *name);
52 /* Get the default font for a specific screen size */
54 extern const struct font_desc *get_default_font(int xres, int yres);
56 /* Max. length for the name of a predefined font */
57 #define MAX_FONT_NAME 32
59 #endif /* _VIDEO_FONT_H */