comparison mcabber/src/harddefines.h @ 35:a8ceaa3005fd

[/trunk] Changeset 51 by mikael Work on libjabber integration. This is a big patch... * Remove socket.[ch] server.[ch] We have now fully switched to libjabber. * Roster is fetched, and buddies are added to the buddylist * Can send/receive messages using libjabber * Presence messages are handled. I have added statuses, as there only were online / offline statuses. * Use halfdelay to have a non-blocking getch(). And use a timeout in jb_main(). * Use utf8_{encode,decode}
author mikael
date Mon, 04 Apr 2005 19:13:58 +0000
parents e88b15cbf2de
children 8f1a5e79ca40
comparison
equal deleted inserted replaced
34:f78ffe7ce43d 35:a8ceaa3005fd
2 #define __AJMACIAS__ 0xWIN! 2 #define __AJMACIAS__ 0xWIN!
3 3
4 #define VERSION "MCabber v0.6.0-dev -- based on http://cabber.sourceforge.net" 4 #define VERSION "MCabber v0.6.0-dev -- based on http://cabber.sourceforge.net"
5 #define EMAIL "Email: bmikael [at] lists [dot] lilotux [dot] net" 5 #define EMAIL "Email: bmikael [at] lists [dot] lilotux [dot] net"
6 6
7 #define STR_EMPTY(s) ((s)[0] == '\0')
8
9 #define FLAG_BUDDY_DISCONNECTED 0x00
10 #define FLAG_BUDDY_CONNECTED 0x01
11 #define FLAG_BUDDY_AWAY 0x02
12 #define FLAG_BUDDY_XAWAY 0x04
13 #define FLAG_BUDDY_HASMESSAGE 0x08
14
15 #endif 7 #endif