https://github.com/torvalds/linux
Raw File
Tip revision: b6ff50833ad43a8ebd9b16bf53c334f7aaf33c41 authored by Linus Torvalds on 30 July 2006, 06:15:36 UTC
Linux v2.6.18-rc3
Tip revision: b6ff508
consolemap.h
/*
 * 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

struct vc_data;

extern unsigned char inverse_translate(struct vc_data *conp, int glyph);
extern unsigned short *set_translate(int m, struct vc_data *vc);
extern int conv_uni_to_pc(struct vc_data *conp, long ucs);
back to top