Use full paths to includes

This commit is contained in:
ailin-nemui 2019-05-01 16:33:47 +02:00
commit 7e6e1f2e10
303 changed files with 1834 additions and 1901 deletions

View file

@ -1,7 +1,7 @@
#ifndef __CHATNETS_H
#define __CHATNETS_H
#include "modules.h"
#include <irssi/src/core/modules.h>
/* Returns CHATNET_REC if it's chatnet, NULL if it isn't. */
#define CHATNET(chatnet) \
@ -11,7 +11,7 @@
(CHATNET(chatnet) ? TRUE : FALSE)
struct _CHATNET_REC {
#include "chatnet-rec.h"
#include <irssi/src/core/chatnet-rec.h>
};
extern GSList *chatnets; /* list of available chat networks */