comparison libpurple/protocols/qq/send_core.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
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file send_core.h 2 * @file send_core.h
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
26 #define _QQ_SEND_CORE_H_ 26 #define _QQ_SEND_CORE_H_
27 27
28 #include <glib.h> 28 #include <glib.h>
29 #include "connection.h" 29 #include "connection.h"
30 30
31 gint qq_send_cmd(GaimConnection *gc, guint16 cmd, gboolean is_auto_seq, guint16 seq, 31 gint qq_send_cmd(PurpleConnection *gc, guint16 cmd, gboolean is_auto_seq, guint16 seq,
32 gboolean need_ack, guint8 *data, gint len); 32 gboolean need_ack, guint8 *data, gint len);
33 gint _qq_send_packet(GaimConnection * gc, guint8 *buf, gint len, guint16 cmd); 33 gint _qq_send_packet(PurpleConnection * gc, guint8 *buf, gint len, guint16 cmd);
34 gint _create_packet_head_seq(guint8 *buf, guint8 **cursor, 34 gint _create_packet_head_seq(guint8 *buf, guint8 **cursor,
35 GaimConnection *gc, guint16 cmd, gboolean is_auto_seq, guint16 *seq); 35 PurpleConnection *gc, guint16 cmd, gboolean is_auto_seq, guint16 *seq);
36 36
37 #endif 37 #endif