diff options
Diffstat (limited to 'include/linux/consolemap.h')
-rw-r--r-- | include/linux/consolemap.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/consolemap.h b/include/linux/consolemap.h new file mode 100644 index 000000000000..65842efc1b70 --- /dev/null +++ b/include/linux/consolemap.h | |||
@@ -0,0 +1,15 @@ | |||
1 | /* | ||
2 | * consolemap.h | ||
3 | * | ||
4 | * Interface between console.c, selection.c and consolemap.c | ||
5 | */ | ||
6 | #define LAT1_MAP 0 | ||
7 | #define GRAF_MAP 1 | ||
8 | #define IBMPC_MAP 2 | ||
9 | #define USER_MAP 3 | ||
10 | |||
11 | struct vc_data; | ||
12 | |||
13 | extern unsigned char inverse_translate(struct vc_data *conp, int glyph); | ||
14 | extern unsigned short *set_translate(int m, struct vc_data *vc); | ||
15 | extern int conv_uni_to_pc(struct vc_data *conp, long ucs); | ||