comparison src/protocols/msn/notification.h @ 10463:9bed28273ec7

[gaim-migrate @ 11737] Felipe Contreras fixed the MSN HTTP Method. Yay! Thanks Felipe. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Fri, 31 Dec 2004 16:34:22 +0000
parents ab6636c5a136
children bcfea6c3d5c9
comparison
equal deleted inserted replaced
10462:f7b32dd67bdf 10463:9bed28273ec7
34 { 34 {
35 MsnSession *session; 35 MsnSession *session;
36 MsnCmdProc *cmdproc; 36 MsnCmdProc *cmdproc;
37 MsnServConn *servconn; 37 MsnServConn *servconn;
38 38
39 gboolean destroying; /**< A flag that states if the notification is on
40 the process of being destroyed. */
41
39 gboolean in_use; 42 gboolean in_use;
40 }; 43 };
41 44
42 #include "state.h" 45 #include "state.h"
43 46
54 void msn_notification_destroy(MsnNotification *notification); 57 void msn_notification_destroy(MsnNotification *notification);
55 gboolean msn_notification_connect(MsnNotification *notification, 58 gboolean msn_notification_connect(MsnNotification *notification,
56 const char *host, int port); 59 const char *host, int port);
57 void msn_notification_disconnect(MsnNotification *notification); 60 void msn_notification_disconnect(MsnNotification *notification);
58 61
62 /**
63 * Closes a notification.
64 *
65 * It's first closed, and then disconnected.
66 *
67 * @param notification The notification object to close.
68 */
69 void msn_notification_close(MsnNotification *notification);
70
59 void msn_got_login_params(MsnSession *session, const char *login_params); 71 void msn_got_login_params(MsnSession *session, const char *login_params);
60 72
61 #endif /* _MSN_NOTIFICATION_H_ */ 73 #endif /* _MSN_NOTIFICATION_H_ */