2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* consolemap.h
|
|
|
|
*
|
|
|
|
* Interface between console.c, selection.c and consolemap.c
|
|
|
|
*/
|
|
|
|
#define LAT1_MAP 0
|
|
|
|
#define GRAF_MAP 1
|
|
|
|
#define IBMPC_MAP 2
|
|
|
|
#define USER_MAP 3
|
|
|
|
|
2007-07-16 08:40:40 +02:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
struct vc_data;
|
|
|
|
|
2007-07-16 08:40:40 +02:00
|
|
|
extern u16 inverse_translate(struct vc_data *conp, int glyph, int use_unicode);
|
2005-04-17 00:20:36 +02:00
|
|
|
extern unsigned short *set_translate(int m, struct vc_data *vc);
|
|
|
|
extern int conv_uni_to_pc(struct vc_data *conp, long ucs);
|
2007-07-16 08:40:40 +02:00
|
|
|
extern u32 conv_8bit_to_uni(unsigned char c);
|
2007-10-17 08:27:04 +02:00
|
|
|
extern int conv_uni_to_8bit(u32 uni);
|
2006-10-03 10:15:06 +02:00
|
|
|
void console_map_init(void);
|