comparison src/protocols/msn/msn.h @ 6701:b7e113a59b51

[gaim-migrate @ 7227] Updated to MSN Protocol 9. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 02 Sep 2003 04:32:16 +0000
parents 7c14b35bc984
children 8efafdc38718
comparison
equal deleted inserted replaced
6700:57161e3abbb5 6701:b7e113a59b51
2 * @file msn.h The MSN protocol plugin 2 * @file msn.h The MSN protocol plugin
3 * 3 *
4 * gaim 4 * gaim
5 * 5 *
6 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> 6 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
12 * 12 *
35 #include "privacy.h" 35 #include "privacy.h"
36 #include "proxy.h" 36 #include "proxy.h"
37 #include "prpl.h" 37 #include "prpl.h"
38 #include "request.h" 38 #include "request.h"
39 #include "server.h" 39 #include "server.h"
40 #include "sslconn.h"
40 #include "util.h" 41 #include "util.h"
41 42
42 /* XXX */ 43 /* XXX */
43 #include "gaim.h" 44 #include "gaim.h"
44 45
45 #ifdef _WIN32 46 #ifdef _WIN32
46 #include "win32dep.h" 47 # include "win32dep.h"
47 #include "stdint.h" 48 # include "stdint.h"
48 #endif 49 #endif
49 50
50 #define MSN_BUF_LEN 8192 51 #define MSN_BUF_LEN 8192
51 52
52 #define USEROPT_MSNSERVER 3 53 #define USEROPT_MSNSERVER 3
71 #define MSN_CLIENTINFO \ 72 #define MSN_CLIENTINFO \
72 "Client-Name: Gaim/" VERSION "\r\n" \ 73 "Client-Name: Gaim/" VERSION "\r\n" \
73 "Chat-Logging: Y\r\n" \ 74 "Chat-Logging: Y\r\n" \
74 "Buddy-Icons: 1\r\n" 75 "Buddy-Icons: 1\r\n"
75 76
77
78 typedef enum
79 {
80 MSN_LIST_FL_OP = 0x01,
81 MSN_LIST_AL_OP = 0x02,
82 MSN_LIST_BL_OP = 0x04,
83 MSN_LIST_RL_OP = 0x08
84
85 } MsnListOp;
86
76 #endif /* _MSN_H_ */ 87 #endif /* _MSN_H_ */