comparison src/protocols/msn/error.h @ 8808:bbd8cdaf0ad5

[gaim-migrate @ 9570] A massive patch by shx to reorganize MSN some more and add command processor support. This allows us to do cool things like produce more detailed error messages. For example, the Invalid Username dialog now shows the username of the invalid user. I modified the aforementioned dialog so it'll look a little nicer looking, and also mention the account this happened on. It also removes the user from your blist, as there's no point to keeping the user on there. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 25 Apr 2004 22:02:06 +0000
parents 06f57183e29f
children ab6636c5a136
comparison
equal deleted inserted replaced
8807:482fc53c969d 8808:bbd8cdaf0ad5
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 typedef enum
26 {
27 MSN_ERROR_NONE,
28 MSN_ERROR_MISC,
29 MSN_ERROR_CONNECT,
30 MSN_ERROR_WRITE,
31 MSN_ERROR_READ,
32 MSN_ERROR_SIGNOTHER,
33 MSN_ERROR_SERVDOWN
34
35 } MsnErrorType;
36
25 #include "session.h" 37 #include "session.h"
26 38
27 /** 39 /**
28 * Returns the string representation of an error type. 40 * Returns the string representation of an error type.
29 * 41 *