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

« back to all changes in this revision

Viewing changes to src/fe-common/xep/fe-xep.c

  • Committer: Bazaar Package Importer
  • Author(s): David Ammouial
  • Date: 2009-05-12 12:14:44 UTC
  • mfrom: (1.1.3 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090512121444-5jeho5h3zsy4oij7
Tags: 0.13+cvs20090406-1
* New CVS snapshot, built against irssi-dev 0.8.13:
  - New features and bugfixes.
  - Fix segfault when successfully identified (Closes: #521227).
  - Fix build error (Closes: #527697)
* Depend on irssi >=0.8.13, build-depend on irssi-dev >=0.8.13.
* Bump Standards-Version to 3.8.1 (no changes needed).
* Add INTERNAL to documentation files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: fe-xep.c,v 1.7 2009/04/05 14:15:36 cdidier Exp $
 
3
 *
 
4
 * Copyright (C) 2007,2008,2009 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 version 2 as
 
8
 * published by the Free Software Foundation.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License along
 
16
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
17
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
18
 */
 
19
 
 
20
#include "module.h"
 
21
 
 
22
#include "fe-composing.h"
 
23
#include "fe-delay.h"
 
24
#include "fe-muc.h"
 
25
#include "fe-ping.h"
 
26
#include "fe-registration.h"
 
27
#include "fe-vcard.h"
 
28
#include "fe-version.h"
 
29
 
 
30
void
 
31
fe_xep_init(void)
 
32
{
 
33
        fe_composing_init();
 
34
        fe_delay_init();
 
35
        fe_muc_init();
 
36
        fe_ping_init();
 
37
        fe_registration_init();
 
38
        fe_vcard_init();
 
39
        fe_version_init();
 
40
}
 
41
 
 
42
void
 
43
fe_xep_deinit(void)
 
44
{
 
45
        fe_composing_deinit();
 
46
        fe_delay_deinit();
 
47
        fe_muc_deinit();
 
48
        fe_ping_deinit();
 
49
        fe_registration_deinit();
 
50
        fe_vcard_deinit();
 
51
        fe_version_deinit();
 
52
}