1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

Moved resource.c

This commit is contained in:
James Booth 2016-07-24 15:05:24 +01:00
parent 2af0d38e3d
commit cc32bb7738
6 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,7 @@ core_sources = \
src/profanity.h src/xmpp/chat_session.c \
src/xmpp/chat_session.h src/xmpp/muc.c src/xmpp/muc.h src/xmpp/jid.h src/xmpp/jid.c \
src/xmpp/chat_state.h src/xmpp/chat_state.c \
src/resource.c src/resource.h \
src/xmpp/resource.c src/xmpp/resource.h \
src/roster_list.c src/roster_list.h \
src/xmpp/xmpp.h src/xmpp/capabilities.c src/xmpp/session.c \
src/xmpp/connection.h src/xmpp/connection.c \
@ -61,7 +61,7 @@ unittest_sources = \
src/log.h src/profanity.c src/common.h \
src/profanity.h src/xmpp/chat_session.c \
src/xmpp/chat_session.h src/xmpp/muc.c src/xmpp/muc.h src/xmpp/jid.h src/xmpp/jid.c \
src/resource.c src/resource.h \
src/xmpp/resource.c src/xmpp/resource.h \
src/xmpp/chat_state.h src/xmpp/chat_state.c \
src/roster_list.c src/roster_list.h \
src/xmpp/xmpp.h src/xmpp/form.c \

View File

@ -68,7 +68,7 @@
#ifdef HAVE_LIBGPGME
#include "pgp/gpg.h"
#endif
#include "resource.h"
#include "xmpp/resource.h"
#include "xmpp/xmpp.h"
#include "ui/ui.h"
#include "window_list.h"

View File

@ -40,7 +40,7 @@
#include <assert.h>
#include "roster_list.h"
#include "resource.h"
#include "xmpp/resource.h"
#include "xmpp/contact.h"
#include "xmpp/jid.h"
#include "tools/autocomplete.h"

View File

@ -37,7 +37,7 @@
#include <glib.h>
#include "resource.h"
#include "xmpp/resource.h"
#include "xmpp/contact.h"
typedef enum {

View File

@ -36,8 +36,8 @@
#include <stdlib.h>
#include <string.h>
#include <common.h>
#include <resource.h>
#include "common.h"
#include "xmpp/resource.h"
Resource*
resource_new(const char *const name, resource_presence_t presence, const char *const status, const int priority)

View File

@ -32,8 +32,8 @@
*
*/
#ifndef RESOURCE_H
#define RESOURCE_H
#ifndef XMPP_RESOURCE_H
#define XMPP_RESOURCE_H
#include "common.h"