Mercurial > pidgin
view src/protocols/msn/sync.h @ 9195:d5487fdec696
[gaim-migrate @ 9990]
I don't think we really need this error. It's harmless, but annoying.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sun, 06 Jun 2004 03:21:23 +0000 |
| parents | 502707ca1836 |
| children | ab6636c5a136 |
line wrap: on
line source
#ifndef _MSN_SYNC_H_ #define _MSN_SYNC_H_ typedef struct _MsnSync MsnSync; #include "session.h" #include "table.h" #include "user.h" struct _MsnSync { MsnSession *session; MsnTable *cbs_table; MsnTable *old_cbs_table; int num_users; int total_users; int num_groups; int total_groups; MsnUser *last_user; }; void msn_sync_init(void); void msn_sync_end(void); MsnSync * msn_sync_new(MsnSession *session); void msn_sync_destroy(MsnSync *sync); #endif /* _MSN_SYNC_H_ */
