diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-12 00:03:33 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-12 00:03:33 +0100 |
commit | 7f34ce254c1a1587e5560456dd11acb29345206d (patch) | |
tree | 94df95bac535a5a395980ea8eef815ddad2f2c69 /protocols/msn/msn.h | |
parent | 523fb2324a351e9607ad2a803c6e866c5175aa16 (diff) |
Get contact list/address book info. Next step: We have to send it back.
Seriously. Wish I were joking.
Diffstat (limited to 'protocols/msn/msn.h')
-rw-r--r-- | protocols/msn/msn.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/protocols/msn/msn.h b/protocols/msn/msn.h index d4f3442e..757359fe 100644 --- a/protocols/msn/msn.h +++ b/protocols/msn/msn.h @@ -150,6 +150,21 @@ struct msn_handler_data int (*exec_message) ( gpointer data, char *msg, int msglen, char **cmd, int count ); }; +typedef enum +{ + MSN_BUDDY_FL = 1, + MSN_BUDDY_AL = 2, + MSN_BUDDY_BL = 4, + MSN_BUDDY_RL = 8, + MSN_BUDDY_PL = 16, +} msn_buddy_flags_t; + +struct msn_buddy_data +{ + char *cid; + msn_buddy_flags_t flags; +}; + /* Bitfield values for msn_status_code.flags */ #define STATUS_FATAL 1 #define STATUS_SB_FATAL 2 |