1 /*  pckt_vpak.h
2  *
3  *  copyright (c) 2000-2003 SeaD
4  *  see GPL for copying info
5  *
6  */
7 
8 #ifndef _PCKT_VPAK_H
9 #define _PCKT_VPAK_H 1
10 
11 #define MSG_VHEREWHO             '0'
12 #define MSG_VHEREIM              '1'
13 #define MSG_VCHAT                '2'
14 #define MSG_VNICK                '3'
15 #define MSG_VJOIN                '4'
16 #define MSG_VLEAVE               '5'
17 #define MSG_VMESG                '6'
18 #define MSG_VMASS                'E'
19 #define MSG_VMESGACK             '7'
20 #define MSG_VEXEC                '8'
21 #define MSG_VEXECACK             '9'
22 #define MSG_VME                  'A'
23 #define MSG_VTOPICNEW            'B'
24 #define MSG_VTOPIC               'C'
25 #define MSG_VMODE                'D'
26 #define MSG_VINFO                'F'
27 #define MSG_VINFORM              'G'
28 #define MSG_VBEEP                'H'
29 #define MSG_VBEEPBEEP            0
30 #define MSG_VBEEPACK             1
31 #define MSG_VBEEPREQ             'I'
32 #define MSG_VPRIVAT              'J'
33 #define MSG_VPRIVATJOIN          0
34 #define MSG_VPRIVATLEAVE         1
35 #define MSG_VPRIVATCHAT          2
36 #define MSG_VPRIVATME            3
37 #define MSG_VHERE                'L'
38 #define MSG_VHEREWE              'K'
39 #define MSG_VACTIVE              'M'
40 #define MSG_VUSERCHNLS           'N'
41 #define MSG_VUSERCHNLSLIST       'O'
42 
43 void pars_vmessage(void);
44 
45 void make_vherewho(void);
46 void make_vhereim(void);
47 void make_vchat(void);
48 void make_vnick(void);
49 void make_qnick(void);
50 void make_vjoin(void);
51 void make_qjoin(void);
52 void make_vleave(void);
53 void make_qleave(void);
54 void make_vmesg(void);
55 void make_vmass(void);
56 void make_vmesgack(void);
57 void make_qmesgack(void);
58 void make_vexec(void);
59 void make_vexecack(void);
60 void make_vme(void);
61 void make_vtopicnew(void);
62 void make_qtopicnew(void);
63 void make_vtopic(void);
64 void make_qtopic(void);
65 void make_vmode(void);
66 void make_qmode(void);
67 void make_vinfo(void);
68 void make_vinform(void);
69 void make_qinform(void);
70 void make_vbeepbeep(void);
71 void make_vbeepack(void);
72 void make_qbeepack(void);
73 void make_vbeepreq(void);
74 void make_vprivatjoin(void);
75 void make_qprivatjoin(void);
76 void make_vprivatleave(void);
77 void make_qprivatleave(void);
78 void make_vprivatchat(void);
79 void make_vprivatme(void);
80 void make_vhere(void);
81 void make_vherewe(void);
82 void make_vactive(void);
83 void make_vuserchnls(void);
84 void make_vuserchnlslist(void);
85 
86 #endif  /* _PCKT_VPAK_H */
87