comparison mcabber/src/jabglue.h @ 277:4d7040cff8ee

Remove busy/occupied status, which does not really exist
author Mikael Berthe <mikael@lilotux.net>
date Tue, 05 Jul 2005 20:48:44 +0100
parents 7f2e61392b2e
children 871e53769084
comparison
equal deleted inserted replaced
276:627925d885de 277:4d7040cff8ee
14 #endif 14 #endif
15 15
16 extern jconn jc; 16 extern jconn jc;
17 17
18 extern char imstatus2char[]; 18 extern char imstatus2char[];
19 // Status chars: '_', 'o', 'i', 'f', 'd', 'c', 'n', 'a' 19 // Status chars: '_', 'o', 'i', 'f', 'd', 'n', 'a'
20 20
21 enum imstatus { 21 enum imstatus {
22 offline, 22 offline,
23 available, 23 available,
24 invisible, 24 invisible,
25 freeforchat, 25 freeforchat,
26 dontdisturb, 26 dontdisturb,
27 occupied,
28 notavail, 27 notavail,
29 away, 28 away,
30 imstatus_size 29 imstatus_size
31 }; 30 };
32 31