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 __CHANNELS_SETUP_H
#define __CHANNELS_SETUP_H
#include "modules.h"
#include <irssi/src/core/modules.h>
#define CHANNEL_SETUP(server) \
MODULE_CHECK_CAST(server, CHANNEL_SETUP_REC, type, "CHANNEL SETUP")
@ -10,7 +10,7 @@
(CHANNEL_SETUP(server) ? TRUE : FALSE)
struct _CHANNEL_SETUP_REC {
#include "channel-setup-rec.h"
#include <irssi/src/core/channel-setup-rec.h>
};
extern GSList *setupchannels;