comparison libpurple/protocols/msn/cmdproc.h @ 28983:462cb893521b

Minor header file cleanup. Mostly I wanted to move some enums above some #includes
author Mark Doliner <mark@kingant.net>
date Fri, 05 Feb 2010 22:49:11 +0000
parents af9b9196d68d
children 994798816048
comparison
equal deleted inserted replaced
28982:791606778223 28983:462cb893521b
19 * 19 *
20 * You should have received a copy of the GNU General Public License 20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software 21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
23 */ 23 */
24 #ifndef _MSN_CMDPROC_H_ 24 #ifndef MSN_CMDPROC_H
25 #define _MSN_CMDPROC_H_ 25 #define MSN_CMDPROC_H
26 26
27 typedef struct _MsnCmdProc MsnCmdProc; 27 typedef struct _MsnCmdProc MsnCmdProc;
28 28
29 #include "command.h"
30 #include "error.h"
31 #include "history.h"
32 #include "servconn.h"
29 #include "session.h" 33 #include "session.h"
30 #include "servconn.h"
31 #include "error.h"
32 #include "command.h"
33 #include "table.h" 34 #include "table.h"
34 #include "history.h"
35 35
36 struct _MsnCmdProc 36 struct _MsnCmdProc
37 { 37 {
38 MsnSession *session; 38 MsnSession *session;
39 MsnServConn *servconn; 39 MsnServConn *servconn;
69 void msn_cmdproc_process_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd); 69 void msn_cmdproc_process_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd);
70 void msn_cmdproc_process_cmd_text(MsnCmdProc *cmdproc, const char *command); 70 void msn_cmdproc_process_cmd_text(MsnCmdProc *cmdproc, const char *command);
71 void msn_cmdproc_process_payload(MsnCmdProc *cmdproc, 71 void msn_cmdproc_process_payload(MsnCmdProc *cmdproc,
72 char *payload, int payload_len); 72 char *payload, int payload_len);
73 73
74 #endif /* _MSN_CMDPROC_H_ */ 74 #endif /* MSN_CMDPROC_H */