0
|
1 /*
|
|
2 * $Id: sheader.h,v 1.2 2001/06/14 18:16:17 ura Exp $
|
|
3 */
|
|
4
|
|
5 /*
|
|
6 * FreeWnn is a network-extensible Kana-to-Kanji conversion system.
|
|
7 * This file is part of FreeWnn.
|
|
8 *
|
|
9 * Copyright Kyoto University Research Institute for Mathematical Sciences
|
|
10 * 1987, 1988, 1989, 1990, 1991, 1992
|
|
11 * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
|
|
12 * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
|
|
13 * Copyright 1991, 1992 by Massachusetts Institute of Technology
|
|
14 *
|
|
15 * Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp>
|
|
16 *
|
|
17 * This program is free software; you can redistribute it and/or modify
|
|
18 * it under the terms of the GNU General Public License as published by
|
|
19 * the Free Software Foundation; either version 2, or (at your option)
|
|
20 * any later version.
|
|
21 *
|
|
22 * This program is distributed in the hope that it will be useful,
|
|
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
25 * GNU General Public License for more details.
|
|
26 *
|
|
27 * You should have received a copy of the GNU General Public License
|
|
28 * along with GNU Emacs; see the file COPYING. If not, write to the
|
|
29 * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
30 *
|
|
31 * Commentary:
|
|
32 *
|
|
33 * Change log:
|
|
34 *
|
|
35 * Last modified date: 8,Feb.1999
|
|
36 *
|
|
37 * Code:
|
|
38 *
|
|
39 */
|
|
40 /* Version 4.0
|
|
41 */
|
|
42 /**************************
|
|
43 * header of standard i/o
|
|
44 **************************/
|
|
45
|
|
46 #ifndef _HEADER_H_
|
|
47 #define _HEADER_H_
|
|
48
|
|
49 extern int rubout_code;
|
|
50 extern int kk_on;
|
|
51 extern int quote_code;
|
|
52
|
|
53 extern char *ximrc_file;
|
|
54 extern char *cvt_key_file;
|
|
55 extern char *cvt_fun_file;
|
|
56 extern char *cvt_meta_file;
|
|
57 extern int defined_by_option;
|
|
58
|
|
59 extern WNN_DIC_INFO *dicinfo;
|
|
60 extern int dic_list_size;
|
|
61
|
|
62 extern char *prgname;
|
|
63
|
|
64 extern char *xim_title;
|
|
65
|
|
66 extern char *display_name;
|
|
67 #ifdef USING_XJUTIL
|
|
68 extern char *xjutil_name;
|
|
69 #endif /* USING_XJUTIL */
|
|
70
|
|
71 extern char *def_lang;
|
|
72 extern char *def_locale;
|
|
73 extern char *world_locale;
|
|
74
|
|
75 extern XIMLangDataBase *cur_lang;
|
|
76
|
|
77 extern WnnClientRec *c_c;
|
|
78 extern XIMClientRec *cur_p;
|
|
79 extern XIMClientRec *cur_x;
|
|
80 extern XIMInputRec *cur_input;
|
|
81 extern XInputManager *xim;
|
|
82 extern XIMInputList input_list;
|
|
83 extern WnnClientList wnnclient_list;
|
|
84 extern XIMClientList ximclient_list;
|
|
85 extern ReadRkfileList read_rkfile_list;
|
|
86 extern BoxRec *box_list;
|
|
87
|
|
88 extern Romkan *cur_rk;
|
|
89 extern RomkanTable *cur_rk_table;
|
|
90
|
|
91 extern char read_rk_file[MAX_LANGS][62];
|
|
92
|
|
93 extern struct msg_cat *cd;
|
|
94
|
|
95 extern char *root_def_servername;
|
|
96 extern char *root_def_reverse_servername;
|
|
97 extern char *root_username;
|
|
98 extern Bool root_henkan_off_def;
|
|
99 extern char *root_uumkeyname;
|
|
100 extern char *root_rkfilename;
|
|
101
|
|
102 extern char *world_lang;
|
|
103 extern char *arg_string;
|
|
104
|
|
105 extern char *default_message[];
|
|
106
|
|
107 extern wchar *wc_buf;
|
|
108 extern unsigned char *ct_buf;
|
|
109 extern unsigned char *c_buf;
|
|
110 extern int wc_buf_max;
|
|
111 extern int ct_buf_max;
|
|
112 extern int c_buf_max;
|
|
113 #ifndef X_WCHAR
|
|
114 extern wchar_t *wt_buf;
|
|
115 extern int wt_buf_max;
|
|
116 #endif /* !X_WCHAR */
|
|
117
|
|
118 extern ConvCode cvt_key_tbl[];
|
|
119 extern int cvt_key_tbl_cnt;
|
|
120
|
|
121 extern XIMLangDataBase *language_db;
|
|
122 extern XIMLcNameRec *lc_name_list;
|
|
123 extern FunctionTable function_db[];
|
|
124 #endif /* _HEADER_H_ */
|