00001 #ifndef LANG_H 00002 #define LANG_H 00003 00004 #include "vt.h" 00005 00006 extern int latin1; 00007 extern const unsigned char lang_chars[][16]; /* from vbilut.cpp */ 00008 00009 struct enhance 00010 { 00011 int next_des; // next expected designation code 00012 unsigned int trip[13*16]; // tripplets 00013 }; 00014 00015 void lang_init(void); 00016 void conv2latin(unsigned char *p, int n, int lang); 00017 00018 void init_enhance(struct enhance *eh); 00019 void add_enhance(struct enhance *eh, int dcode, unsigned int *data); 00020 void enhance(struct enhance *eh, struct vt_page *vtp); 00021 00022 #endif // LANG_H 00023
1.5.5