1 /*
2  * engdic.h
3  *
4  * English dictionary for korean
5  *
6  * Author: Oh Junseon <hollywar@mail.holywar.net>
7  * Date  : $Date: 1999/07/05 06:50:00 $
8  *
9  * $Revision: 1.6 $
10  *
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20 */
21 
22 // Global value
23 #define INSTALL_DIC_DATA_DIR "/usr/local/share/engdic"
24 #define MAX_LENGTH 80
25 #define COLS_MAX 1024
26 
27 // Global string
28 #define SEARCH_WORD "ã���ܾ�: "
29 #define END_WORD "** ���ѻ����� ��Ĩ�ϴ�. **"
30 #define HAN_ERROR_WORD "�ѿ������ ���� �������� ���մϴ�."
31 #define GET_COMMAND "�����̽��ٴ� ����������, ���ʹ� ������, \'q\' �� �ߴ�"
32 
33 #define READ_INTR       (-2)
34 
35 
36 
37 // Ansi color setting
38 // Last 2 digit number selects the color
39 // Experiment and let me know if you come up with
40 // A better scheme
41 #ifdef ANSI_COLOR
42     #define WORD_COLOR	"\x1B[0;33m"
43     #define ERROR_COLOR "\x1B[0;31m"
44     #define NO_COLOR	"\x1B[0m"
45 #else
46     #define WORD_COLOR	""
47     #define ERROR_COLOR ""
48     #define NO_COLOR 	""
49 #endif
50 
51 struct size_buf {
52     int width ;
53     int height ;
54 };
55 
56 /*
57  | $Id: engdic.h,v 1.6 1999/07/05 06:50:00 hollywar Exp $
58  |
59  | Local Variables:
60  | mode: c
61  | mode: font-lock
62  | version-control: t
63  | delete-old-versions: t
64  | End:
65  |
66  | -*- End-Of-File -*-
67  */
68 
69