~ubuntu-branches/ubuntu/trusty/irssi-plugin-xmpp/trusty

« back to all changes in this revision

Viewing changes to src/core/xmpp.h

  • Committer: Bazaar Package Importer
  • Author(s): David Ammouial
  • Date: 2008-02-04 21:01:27 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080204210127-qvw99l8m26ksme18
Tags: 0.13+cvs20080121-1
* CVS snapshot.
* Rephrased package description, thanks to Ted Percival (Closes: #444109).
* debian/control: Promote "Homepage" to a real field.
* Update homepage.
* Adapt debian/rules to new upstream Makefile system.
* Bump Standards-Version to 3.7.3 (no changes required).
* Removed empty TODO from debian/docs, added docs/GENERAL, docs/STARTUP,
  docs/XEP.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: xmpp.h,v 1.6 2007/12/08 16:51:34 errtu Exp $ */
 
2
 
1
3
#ifndef __XMPP_H
2
4
#define __XMPP_H
3
5
 
4
6
typedef struct _XMPP_SERVER_CONNECT_REC XMPP_SERVER_CONNECT_REC;
5
7
typedef struct _XMPP_SERVER_REC XMPP_SERVER_REC;
 
8
typedef struct _XMPP_QUERY_REC XMPP_QUERY_REC;
6
9
typedef struct _XMPP_CHANNEL_REC XMPP_CHANNEL_REC;
 
10
typedef struct _XMPP_NICK_REC XMPP_NICK_REC;
7
11
 
 
12
#define IS_XMPP_ITEM(rec) (IS_XMPP_CHANNEL(rec) || IS_XMPP_QUERY(rec))
8
13
#define XMPP_PROTOCOL (chat_protocol_lookup("XMPP"))
9
14
 
10
15
#define IRSSI_XMPP_PACKAGE "irssi-xmpp"
11
 
#define IRSSI_XMPP_VERSION "0.13"
 
16
#define IRSSI_XMPP_VERSION "1.0-dev"
12
17
 
13
18
#endif