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

« back to all changes in this revision

Viewing changes to src/fe-text/text-xmpp.c

  • 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
/*
 
2
 * $Id: text-xmpp.c,v 1.4 2007/10/10 15:24:51 errtu Exp $
 
3
 *
 
4
 * Copyright (C) 2007 Colin DIDIER
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License along
 
17
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
18
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
19
 */
 
20
 
 
21
#include "module.h"
 
22
#include "modules.h"
 
23
 
 
24
#include "text-xmpp-composing.h"
 
25
#include "text-xmpp-nick.h"
 
26
 
 
27
void
 
28
text_xmpp_init(void)
 
29
{
 
30
        text_xmpp_composing_init();
 
31
        text_xmpp_nick_init();
 
32
 
 
33
        module_register("xmpp", "text");
 
34
}
 
35
 
 
36
void
 
37
text_xmpp_deinit(void)
 
38
{
 
39
        text_xmpp_composing_deinit();
 
40
        text_xmpp_nick_deinit();
 
41
}