1 /*
2  *  messages.h
3  *
4  *  Copyright (C) 1998	Jiann-Ching Liu
5  */
6 
7 #ifndef __QE_MESSAGES_H_
8 #define __QE_MESSAGES_H_
9 
10 
11 #define MSG_BLOCK_MARK_REQ	   0
12 #define MSG_CANT_SAVE_INTERNAL	   1
13 #define MSG_CHANGE_IT		   2
14 #define MSG_CONFIRM_CHANGE	   3
15 #define MSG_CONFLICT_EXIST_MARK    4
16 #define MSG_REALLY_QUIT 	   5
17 #define MSG_ERROR_OPEN_FILE	   6
18 #define MSG_READ_ONLY_FILE	   7
19 #define MSG_FILE_SAVED		   8
20 #define MSG_MESSING_FILE_NAME	   9
21 #define MSG_NAME_IN_USE 	  10
22 #define MSG_NEW_FILE		  11
23 #define MSG_NO_CHANGE		  12
24 #define MSG_NO_MARKED_AREA	  13
25 #define MSG_NO_MARK_SAVED	  14
26 #define MSG_NO_MATCH_FOUND	  15
27 #define MSG_NO_MATCH_CTRL_G	  16
28 #define MSG_OUT_OF_MEMORY	  17
29 #define MSG_PERMISSION_DENY	  18
30 #define MSG_QUIT		  19
31 #define MSG_WRITE_FORCE 	  20
32 #define MSG_READ_ERROR		  21
33 #define MSG_SEARCH_WRAPPED	  22
34 #define MSG_S_T_CONFLICT	  23
35 #define MSG_TOO_MANY_MARK_SAVE	  24
36 #define MSG_TYPE_A_CHARACTER	  25
37 #define MSG_UNKNOW_COMMAND	  26
38 #define MSG_MENU_USAGE		  27
39 #define MSG_CMD_HISTORY 	  28
40 
41 
42 
43 extern const char *chinese_message[];
44 extern const char *english_message[];
45 
46 #endif
47