Initial import of the ircii-pana-1.1-final source tree.
git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
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,v 1.1.1.1 2003/04/11 01:09:07 dan Exp $
|
||||
*/
|
||||
|
||||
#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