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

« back to all changes in this revision

Viewing changes to src/core/xmpp-rosters-tools.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-rosters-tools.h,v 1.5 2007/11/26 12:55:07 errtu Exp $ */
 
2
 
 
3
#ifndef __XMPP_ROSTER_TOOLS_H
 
4
#define __XMPP_ROSTER_TOOLS_H
 
5
 
 
6
#include "xmpp-rosters.h"
 
7
 
 
8
__BEGIN_DECLS
 
9
XMPP_ROSTER_USER_REC     *xmpp_rosters_find_user(GSList *, const char *,
 
10
                             XMPP_ROSTER_GROUP_REC **);
 
11
XMPP_ROSTER_RESOURCE_REC *xmpp_rosters_find_resource(XMPP_ROSTER_USER_REC *,
 
12
                              const char *);
 
13
XMPP_ROSTER_RESOURCE_REC *xmpp_rosters_find_own_resource(XMPP_SERVER_REC *,
 
14
                              const char *);
 
15
gboolean         xmpp_rosters_show_user(XMPP_ROSTER_USER_REC *);
 
16
void             xmpp_rosters_reorder(XMPP_ROSTER_GROUP_REC *);
 
17
char            *xmpp_rosters_resolve_name(XMPP_SERVER_REC *, const char *);
 
18
int              xmpp_presence_get_show(const char *);
 
19
__END_DECLS
 
20
 
 
21
#endif