~ubuntu-branches/ubuntu/intrepid/pidgin/intrepid-proposed

« back to all changes in this revision

Viewing changes to libpurple/protocols/qq/send_core.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-07-02 11:20:18 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20080702112018-14sy0yept6am7tc7
Tags: 1:2.4.3-0ubuntu1
* New upstream version:
  - can connect to the icq server (lp: #244591)
* debian/control,
  debian/rules:
  - build-depends on libsilc which is in main now (lp: #44728)
* debian/patches/16_yahoo_icon_crash.patch:
  - updated, some of the changes are in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * @file send_core.h
3
 
 *
4
 
 * purple
5
 
 *
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
8
 
 * source distribution.
9
 
 *
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
12
 
 * the Free Software Foundation; either version 2 of the License, or
13
 
 * (at your option) any later version.
14
 
 *
15
 
 * This program is distributed in the hope that it will be useful,
16
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
 * GNU General Public License for more details.
19
 
 *
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
22
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
23
 
 */
24
 
 
25
 
#ifndef _QQ_SEND_CORE_H_
26
 
#define _QQ_SEND_CORE_H_
27
 
 
28
 
#include <glib.h>
29
 
#include "connection.h"
30
 
 
31
 
gint qq_send_cmd(PurpleConnection *gc, guint16 cmd, gboolean is_auto_seq, guint16 seq, 
32
 
                gboolean need_ack, guint8 *data, gint len);
33
 
gint _qq_send_packet(PurpleConnection * gc, guint8 *buf, gint len, guint16 cmd);
34
 
gint _create_packet_head_seq(guint8 *buf, guint8 **cursor,
35
 
                PurpleConnection *gc, guint16 cmd, gboolean is_auto_seq, guint16 *seq);
36
 
 
37
 
#endif