1 /*  chat_cmnd.h
2  *
3  *  copyright (c) 2000-2003 SeaD
4  *  see GPL for copying info
5  *
6  */
7 
8 #ifndef _CHAT_CMND_H
9 #define _CHAT_CMND_H 1
10 
11 #define CHR_CMND        '/'
12 
13 #define CHR_RESTR1      '\"'
14 #define CHR_RESTR2      '\\'
15 #define CHR_RESTR3      '/'
16 #define CHR_RESTR4      '|'
17 #define CHR_RESTR5      '>'
18 #define CHR_RESTR6      '<'
19 #define CHR_RESTR7      '?'
20 #define CHR_RESTR8      '*'
21 
22 #define CMD_MAXLEN      32
23 
24 #define CMD_NICK        "nick"
25 #define CMD_NICK1       "n"
26 #define CMD_GENDER      "gender"
27 #define CMD_GENDER1     "g"
28 #define CMD_INFO        "info"
29 #define CMD_INFO1       "i"
30 #define CMD_INFO2       "whois"
31 #define CMD_HERE        "here"
32 #define CMD_ME          "me"
33 #define CMD_BEEP        "beep"
34 #define CMD_BEEP1       "b"
35 #define CMD_EXEC        "exec"
36 #define CMD_FAVORITE    "favorite"
37 #define CMD_FAVORITE1   "favor"
38 #define CMD_IGNORE      "ignore"
39 #define CMD_IGNORE1     "ign"
40 #define CMD_BAN         "ban"
41 #define CMD_BCAST       "bcast"
42 
43 #define CMD_JOIN        "join"
44 #define CMD_JOIN1       "j"
45 #define CMD_LEAVE       "leave"
46 #define CMD_LEAVE1      "l"
47 #define CMD_TALK        "talk"
48 #define CMD_TALK1       "t"
49 #define CMD_TALK2       "chat"
50 #define CMD_MESG        "message"
51 #define CMD_MESG1       "mesg"
52 #define CMD_MESG2       "m"
53 #define CMD_MASS        "mass"
54 #define CMD_TOPIC       "topic"
55 #define CMD_TOPIC1      "top"
56 #define CMD_ADD         "add"
57 #define CMD_MY          "my"
58 
59 #define CMD_ACTIVE      "active"
60 #define CMD_ACTIVE1     "act"
61 #define CMD_ANSWER      "answer"
62 #define CMD_ANSWER1     "a"
63 #define CMD_MODE        "mode"
64 #define CMD_MODE1       "mod"
65 #define CMD_NORMAL      "normal"
66 #define CMD_NORMAL1     "o"
67 #define CMD_DND         "dnd"
68 #define CMD_DND1        "dd"
69 #define CMD_AWAY        "away"
70 #define CMD_AWAY1       "aw"
71 #define CMD_OFF         "off"
72 #define CMD_OFF1        "of"
73 
74 #define CMD_LOAD        "load"
75 #define CMD_SAVE        "save"
76 #define CMD_SHELL       "!"
77 #define CMD_CLEAR       "clear"
78 #define CMD_CLEAR1      "c"
79 #define CMD_VERBOSE     "verbose"
80 #define CMD_VERBOSE1    "verb"
81 #define CMD_KEYS        "keys"
82 #define CMD_KEYS1       "k"
83 #define CMD_STATUS      "status"
84 #define CMD_STATUS1     "s"
85 #define CMD_VERSION     "version"
86 #define CMD_VERSION1    "v"
87 #define CMD_HELP        "help"
88 #define CMD_HELP1       "h"
89 #define CMD_HELP2       "?"
90 #define CMD_QUIT        "quit"
91 #define CMD_QUIT1       "q"
92 #define CMD_QUIT2       "exit"
93 
94 #endif  /* _CHAT_CMND_H */
95