update include guard names

This commit is contained in:
ailin-nemui 2019-05-01 22:22:22 +02:00
commit 37f7c7f374
114 changed files with 232 additions and 232 deletions

View file

@ -1,5 +1,5 @@
#ifndef __BANS_H
#define __BANS_H
#ifndef IRSSI_IRC_CORE_BANS_H
#define IRSSI_IRC_CORE_BANS_H
void bans_init(void);
void bans_deinit(void);

View file

@ -1,5 +1,5 @@
#ifndef __CHANNEL_EVENTS_H
#define __CHANNEL_EVENTS_H
#ifndef IRSSI_IRC_CORE_CHANNEL_EVENTS_H
#define IRSSI_IRC_CORE_CHANNEL_EVENTS_H
#include <irssi/src/irc/core/irc.h>

View file

@ -1,5 +1,5 @@
#ifndef __CHANNEL_REJOIN_H
#define __CHANNEL_REJOIN_H
#ifndef IRSSI_IRC_CORE_CHANNEL_REJOIN_H
#define IRSSI_IRC_CORE_CHANNEL_REJOIN_H
typedef struct {
char *channel;

View file

@ -1,5 +1,5 @@
#ifndef __CTCP_H
#define __CTCP_H
#ifndef IRSSI_IRC_CORE_CTCP_H
#define IRSSI_IRC_CORE_CTCP_H
/* Register/unregister CTCP command, so it shows in CTCP CLIENTINFO */
void ctcp_register(const char *name);

View file

@ -1,5 +1,5 @@
#ifndef __IRC_CAP_H
#define __IRC_CAP_H
#ifndef IRSSI_IRC_CORE_IRC_CAP_H
#define IRSSI_IRC_CORE_IRC_CAP_H
void irc_cap_init(void);
void irc_cap_deinit(void);

View file

@ -1,5 +1,5 @@
#ifndef __IRC_CHANNELS_H
#define __IRC_CHANNELS_H
#ifndef IRSSI_IRC_CORE_IRC_CHANNELS_H
#define IRSSI_IRC_CORE_IRC_CHANNELS_H
#include <irssi/src/core/chat-protocols.h>
#include <irssi/src/core/channels.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_CHATNETS_H
#define __IRC_CHATNETS_H
#ifndef IRSSI_IRC_CORE_IRC_CHATNETS_H
#define IRSSI_IRC_CORE_IRC_CHATNETS_H
#include <irssi/src/core/chat-protocols.h>
#include <irssi/src/core/chatnets.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_COMMANDS_H
#define __IRC_COMMANDS_H
#ifndef IRSSI_IRC_CORE_IRC_COMMANDS_H
#define IRSSI_IRC_CORE_IRC_COMMANDS_H
#include <irssi/src/core/commands.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_MASKS_H
#define __IRC_MASKS_H
#ifndef IRSSI_IRC_CORE_IRC_MASKS_H
#define IRSSI_IRC_CORE_IRC_MASKS_H
#include <irssi/src/core/masks.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_NICKLIST_H
#define __IRC_NICKLIST_H
#ifndef IRSSI_IRC_CORE_IRC_NICKLIST_H
#define IRSSI_IRC_CORE_IRC_NICKLIST_H
#include <irssi/src/core/nicklist.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_QUERIES_H
#define __IRC_QUERIES_H
#ifndef IRSSI_IRC_CORE_IRC_QUERIES_H
#define IRSSI_IRC_CORE_IRC_QUERIES_H
#include <irssi/src/core/chat-protocols.h>
#include <irssi/src/core/queries.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_SERVERS_SETUP_H
#define __IRC_SERVERS_SETUP_H
#ifndef IRSSI_IRC_CORE_IRC_SERVERS_SETUP_H
#define IRSSI_IRC_CORE_IRC_SERVERS_SETUP_H
#include <irssi/src/core/chat-protocols.h>
#include <irssi/src/core/servers-setup.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_SERVERS_H
#define __IRC_SERVERS_H
#ifndef IRSSI_IRC_CORE_IRC_SERVERS_H
#define IRSSI_IRC_CORE_IRC_SERVERS_H
#include <irssi/src/core/chat-protocols.h>
#include <irssi/src/core/servers.h>

View file

@ -1,5 +1,5 @@
#ifndef __IRC_H
#define __IRC_H
#ifndef IRSSI_IRC_CORE_IRC_H
#define IRSSI_IRC_CORE_IRC_H
typedef struct _IRC_CHATNET_REC IRC_CHATNET_REC;
typedef struct _IRC_SERVER_CONNECT_REC IRC_SERVER_CONNECT_REC;

View file

@ -1,5 +1,5 @@
#ifndef __MODE_LISTS_H
#define __MODE_LISTS_H
#ifndef IRSSI_IRC_CORE_MODE_LISTS_H
#define IRSSI_IRC_CORE_MODE_LISTS_H
typedef struct {
char *ban;

View file

@ -1,5 +1,5 @@
#ifndef __MODES_H
#define __MODES_H
#ifndef IRSSI_IRC_CORE_MODES_H
#define IRSSI_IRC_CORE_MODES_H
#include <irssi/src/irc/core/irc-channels.h>
#include <irssi/src/core/nicklist.h> /* MAX_USER_PREFIXES */

View file

@ -1,5 +1,5 @@
#ifndef __NETSPLIT_H
#define __NETSPLIT_H
#ifndef IRSSI_IRC_CORE_NETSPLIT_H
#define IRSSI_IRC_CORE_NETSPLIT_H
#include <irssi/src/core/nicklist.h>

View file

@ -18,8 +18,8 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __SASL_H
#define __SASL_H
#ifndef IRSSI_IRC_CORE_SASL_H
#define IRSSI_IRC_CORE_SASL_H
enum {
SASL_MECHANISM_NONE = 0,

View file

@ -1,5 +1,5 @@
#ifndef __SERVERS_IDLE_H
#define __SERVERS_IDLE_H
#ifndef IRSSI_IRC_CORE_SERVERS_IDLE_H
#define IRSSI_IRC_CORE_SERVERS_IDLE_H
/* Add new idle command to queue */
int server_idle_add_redir(IRC_SERVER_REC *server, const char *cmd,

View file

@ -1,5 +1,5 @@
#ifndef __SERVERS_REDIRECT_H
#define __SERVERS_REDIRECT_H
#ifndef IRSSI_IRC_CORE_SERVERS_REDIRECT_H
#define IRSSI_IRC_CORE_SERVERS_REDIRECT_H
/* Register new redirection command.