comparison libpurple/protocols/msn/session.h @ 15823:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 44b4e8bd759b 60bc06498746 4a099e4d0d09
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file session.h MSN session functions 2 * @file session.h MSN session functions
3 * 3 *
4 * gaim 4 * purple
5 * 5 *
6 * Gaim is the legal property of its developers, whose names are too numerous 6 * Purple is the legal property of its developers, whose names are too numerous
7 * to list here. Please refer to the COPYRIGHT file distributed with this 7 * to list here. Please refer to the COPYRIGHT file distributed with this
8 * source distribution. 8 * source distribution.
9 * 9 *
10 * This program is free software; you can redistribute it and/or modify 10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by 11 * it under the terms of the GNU General Public License as published by
78 78
79 #define MSN_LOGIN_STEPS MSN_LOGIN_STEP_END 79 #define MSN_LOGIN_STEPS MSN_LOGIN_STEP_END
80 80
81 struct _MsnSession 81 struct _MsnSession
82 { 82 {
83 GaimAccount *account; 83 PurpleAccount *account;
84 MsnUser *user; 84 MsnUser *user;
85 85
86 guint protocol_ver; 86 guint protocol_ver;
87 87
88 MsnLoginStep login_step; /**< The current step in the login process. */ 88 MsnLoginStep login_step; /**< The current step in the login process. */
123 * 123 *
124 * @param account The account. 124 * @param account The account.
125 * 125 *
126 * @return The new MSN session. 126 * @return The new MSN session.
127 */ 127 */
128 MsnSession *msn_session_new(GaimAccount *account); 128 MsnSession *msn_session_new(PurpleAccount *account);
129 129
130 /** 130 /**
131 * Destroys an MSN session. 131 * Destroys an MSN session.
132 * 132 *
133 * @param session The MSN session to destroy. 133 * @param session The MSN session to destroy.
173 * @param conv The conversation to search for. 173 * @param conv The conversation to search for.
174 * 174 *
175 * @return The switchboard, if found. 175 * @return The switchboard, if found.
176 */ 176 */
177 MsnSwitchBoard *msn_session_find_swboard_with_conv(MsnSession *session, 177 MsnSwitchBoard *msn_session_find_swboard_with_conv(MsnSession *session,
178 GaimConversation *conv); 178 PurpleConversation *conv);
179 /** 179 /**
180 * Finds a switchboard with the given chat ID. 180 * Finds a switchboard with the given chat ID.
181 * 181 *
182 * @param session The MSN session. 182 * @param session The MSN session.
183 * @param chat_id The chat ID to search for. 183 * @param chat_id The chat ID to search for.