Mercurial > pidgin.yaz
changeset 31182:a34622165ecd
This enum looks like userlist related, move it there.
author | masca@cpw.pidgin.im |
---|---|
date | Fri, 28 May 2010 08:21:21 +0000 |
parents | a6975076d86e |
children | 0201164946a3 |
files | libpurple/protocols/msn/msn.h libpurple/protocols/msn/userlist.h |
diffstat | 2 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/msn/msn.h Fri May 28 08:13:30 2010 +0000 +++ b/libpurple/protocols/msn/msn.h Fri May 28 08:21:21 2010 +0000 @@ -26,16 +26,6 @@ typedef enum { - MSN_LIST_FL_OP = 0x01, - MSN_LIST_AL_OP = 0x02, - MSN_LIST_BL_OP = 0x04, - MSN_LIST_RL_OP = 0x08, - MSN_LIST_PL_OP = 0x10 -} MsnListOp; -#define MSN_LIST_OP_MASK 0x07 - -typedef enum -{ MSN_CLIENT_CAP_WIN_MOBILE = 0x0000001, MSN_CLIENT_CAP_INK_GIF = 0x0000004, MSN_CLIENT_CAP_INK_ISF = 0x0000008,
--- a/libpurple/protocols/msn/userlist.h Fri May 28 08:13:30 2010 +0000 +++ b/libpurple/protocols/msn/userlist.h Fri May 28 08:21:21 2010 +0000 @@ -35,6 +35,16 @@ MSN_LIST_PL /**< Pending list */ } MsnListId; +typedef enum +{ + MSN_LIST_FL_OP = 0x01, + MSN_LIST_AL_OP = 0x02, + MSN_LIST_BL_OP = 0x04, + MSN_LIST_RL_OP = 0x08, + MSN_LIST_PL_OP = 0x10 +} MsnListOp; +#define MSN_LIST_OP_MASK 0x07 + #include "group.h" #include "msn.h" #include "user.h"