comparison src/protocols/msn/error.h @ 5436:ad445074d239

[gaim-migrate @ 5818] Another big commit. Ugh. I need a very smart regexp. Core/UI split do_error_dialog(), and soon the mail dialogs! Yay! This should work without problems at all, but standard disclaimer.. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 18 May 2003 19:59:02 +0000
parents e2e53316a21d
children b7e113a59b51
comparison
equal deleted inserted replaced
5435:a2f26666de42 5436:ad445074d239
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */ 21 */
22 #ifndef _MSN_ERROR_H_ 22 #ifndef _MSN_ERROR_H_
23 #define _MSN_ERROR_H_ 23 #define _MSN_ERROR_H_
24 24
25 #include "session.h"
26
25 /** 27 /**
26 * Returns the string representation of an error type. 28 * Returns the string representation of an error type.
27 * 29 *
28 * @param type The error type. 30 * @param type The error type.
29 * 31 *
32 const char *msn_error_get_text(unsigned int type); 34 const char *msn_error_get_text(unsigned int type);
33 35
34 /** 36 /**
35 * Handles an error. 37 * Handles an error.
36 * 38 *
37 * @param type The error type. 39 * @param session The current session.
40 * @param type The error type.
38 */ 41 */
39 void msn_error_handle(unsigned int type); 42 void msn_error_handle(MsnSession *session, unsigned int type);
40 43
41 #endif /* _MSN_ERROR_H_ */ 44 #endif /* _MSN_ERROR_H_ */