mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Removed iq.h
This commit is contained in:
parent
37666528e5
commit
183a66c939
@ -11,7 +11,7 @@ profanity_SOURCES = src/command.c src/contact.c src/history.c src/jabber.h \
|
||||
src/muc.h src/stanza.c src/stanza.h src/parser.c src/parser.h \
|
||||
src/theme.c src/theme.h src/window.c src/window.h src/xdg_base.c \
|
||||
src/xdg_base.h src/files.c src/files.h src/accounts.c src/accounts.h \
|
||||
src/jid.h src/jid.c src/capabilities.h src/capabilities.c src/iq.h src/iq.c
|
||||
src/jid.h src/jid.c src/capabilities.h src/capabilities.c src/iq.c
|
||||
|
||||
TESTS = tests/testsuite
|
||||
check_PROGRAMS = tests/testsuite
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "chat_session.h"
|
||||
#include "common.h"
|
||||
#include "contact_list.h"
|
||||
#include "iq.h"
|
||||
#include "jabber.h"
|
||||
#include "jid.h"
|
||||
#include "log.h"
|
||||
|
31
src/iq.h
31
src/iq.h
@ -1,31 +0,0 @@
|
||||
/*
|
||||
* iq.h
|
||||
*
|
||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||
*
|
||||
* This file is part of Profanity.
|
||||
*
|
||||
* Profanity is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Profanity is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef IQ_H
|
||||
#define IQ_H
|
||||
|
||||
#include <strophe.h>
|
||||
|
||||
int iq_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
||||
void * const userdata);
|
||||
|
||||
#endif
|
@ -84,4 +84,7 @@ void jabber_free_resources(void);
|
||||
void jabber_restart(void);
|
||||
void jabber_set_autoping(int seconds);
|
||||
|
||||
int iq_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
||||
void * const userdata);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user