summaryrefslogtreecommitdiffstats
path: root/include/asm-m68k/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-m68k/font.h')
-rw-r--r--include/asm-m68k/font.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/asm-m68k/font.h b/include/asm-m68k/font.h
new file mode 100644
index 000000000..926e7194c
--- /dev/null
+++ b/include/asm-m68k/font.h
@@ -0,0 +1,35 @@
+/*
+ * asm-m68k/font.h -- `Soft' font definitions
+ *
+ * Created 1995 by Geert Uytterhoeven
+ *
+ * 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 _ASM_M68K_FONT_H_
+#define _ASM_M68K_FONT_H_
+
+#include <linux/types.h>
+
+
+ /*
+ * Find a font with a specific name
+ */
+
+extern int findsoftfont(char *name, int *width, int *height, u_char *data[]);
+
+
+ /*
+ * Get the default font for a specific screen size
+ */
+
+extern void getdefaultfont(int xres, int yres, char *name[], int *width,
+ int *height, u_char *data[]);
+
+
+/* Max. length for the name of a predefined font */
+#define MAX_FONT_NAME 32
+
+#endif /* _ASM_M68K_FONT_H_ */