Mercurial > pidgin
diff src/protocols/msn/user.h @ 19818:2e078c892e0b
[gaim-migrate @ 17003]
add the PSM processing
need to store the PSM info to XML.
Thanks for Chris <ukdrizzle@yahoo.co.uk> 's code!
committed by MaYuan<mayuan2006@gmail.com>
committer: Ethan Blanton <elb@pidgin.im>
| author | Ma Yuan <mayuan2006@gmail.com> |
|---|---|
| date | Wed, 23 Aug 2006 15:07:17 +0000 |
| parents | 852b32710df0 |
| children | a8d00b8dae40 |
line wrap: on
line diff
--- a/src/protocols/msn/user.h Tue Aug 22 16:13:43 2006 +0000 +++ b/src/protocols/msn/user.h Wed Aug 23 15:07:17 2006 +0000 @@ -48,6 +48,8 @@ char * uid; /*< User Id */ const char *status; /**< The state of the user. */ + const char *statusline; /**< The state of the user. */ + gboolean idle; /**< The idle state of the user. */ struct @@ -105,6 +107,14 @@ */ void msn_user_update(MsnUser *user); + /** + * Sets the new statusline of user. + * + * @param user The user. + * @param state The statusline string. + */ +void msn_user_set_statusline(MsnUser *user, const char *statusline); + /** * Sets the new state of user. *
