Seeding from the 1.2 tree.
This commit is contained in:
30
include/translat.h
Normal file
30
include/translat.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Global stuff for translation tables.
|
||||
*
|
||||
* Tomten, tomten@solace.hsh.se / tomten@lysator.liu.se
|
||||
*
|
||||
* @(#)$Id: translat.h 3 2008-02-25 09:49:14Z keaston $
|
||||
*/
|
||||
|
||||
#ifndef __translat_h_
|
||||
#define __translat_h_
|
||||
|
||||
void set_translation (Window *, char *, int);
|
||||
void enter_digraph (char, char *);
|
||||
unsigned char get_digraph (unsigned char);
|
||||
void digraph (char *, char *, char *, char *);
|
||||
void save_digraphs (FILE *);
|
||||
|
||||
extern unsigned char transToClient[256];
|
||||
extern unsigned char transFromClient[256];
|
||||
extern char translation;
|
||||
|
||||
#define DIG_TABLE_SIZE 256
|
||||
extern unsigned char dig_table_lo[DIG_TABLE_SIZE];
|
||||
extern unsigned char dig_table_hi[DIG_TABLE_SIZE];
|
||||
extern unsigned char dig_table_di[DIG_TABLE_SIZE];
|
||||
|
||||
extern char digraph_hit;
|
||||
extern unsigned char digraph_first;
|
||||
|
||||
#endif /* __translat_h_ */
|
||||
Reference in New Issue
Block a user