mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
update include guard names
This commit is contained in:
parent
03ca37c12e
commit
37f7c7f374
114 changed files with 232 additions and 232 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DCC_CHAT_H
|
||||
#define __DCC_CHAT_H
|
||||
#ifndef IRSSI_IRC_DCC_DCC_CHAT_H
|
||||
#define IRSSI_IRC_DCC_DCC_CHAT_H
|
||||
|
||||
#include <irssi/src/irc/dcc/dcc.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DCC_FILE_H
|
||||
#define __DCC_FILE_H
|
||||
#ifndef IRSSI_IRC_DCC_DCC_FILE_H
|
||||
#define IRSSI_IRC_DCC_DCC_FILE_H
|
||||
|
||||
#include <irssi/src/irc/dcc/dcc.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DCC_GET_H
|
||||
#define __DCC_GET_H
|
||||
#ifndef IRSSI_IRC_DCC_DCC_GET_H
|
||||
#define IRSSI_IRC_DCC_DCC_GET_H
|
||||
|
||||
#include <irssi/src/irc/dcc/dcc.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DCC_QUEUE_H_
|
||||
#define __DCC_QUEUE_H_
|
||||
#ifndef IRSSI_IRC_DCC_DCC_QUEUE_H_
|
||||
#define IRSSI_IRC_DCC_DCC_QUEUE_H_
|
||||
|
||||
#include <irssi/src/irc/dcc/dcc-chat.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DCC_SEND_H
|
||||
#define __DCC_SEND_H
|
||||
#ifndef IRSSI_IRC_DCC_DCC_SEND_H
|
||||
#define IRSSI_IRC_DCC_DCC_SEND_H
|
||||
|
||||
#include <irssi/src/irc/dcc/dcc.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DCC_SERVER_H
|
||||
#define __DCC_SERVER_H
|
||||
#ifndef IRSSI_IRC_DCC_DCC_SERVER_H
|
||||
#define IRSSI_IRC_DCC_DCC_SERVER_H
|
||||
|
||||
#include <irssi/src/irc/dcc/dcc.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DCC_H
|
||||
#define __DCC_H
|
||||
#ifndef IRSSI_IRC_DCC_DCC_H
|
||||
#define IRSSI_IRC_DCC_DCC_H
|
||||
|
||||
#include <irssi/src/core/modules.h>
|
||||
#include <irssi/src/core/network.h>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __AUTOIGNORE_H
|
||||
#define __AUTOIGNORE_H
|
||||
#ifndef IRSSI_IRC_FLOOD_AUTOIGNORE_H
|
||||
#define IRSSI_IRC_FLOOD_AUTOIGNORE_H
|
||||
|
||||
void autoignore_add(IRC_SERVER_REC *server, char *nick, int level);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FLOOD_H
|
||||
#define __FLOOD_H
|
||||
#ifndef IRSSI_IRC_FLOOD_FLOOD_H
|
||||
#define IRSSI_IRC_FLOOD_FLOOD_H
|
||||
|
||||
void flood_init(void);
|
||||
void flood_deinit(void);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __NOTIFY_SETUP_H
|
||||
#define __NOTIFY_SETUP_H
|
||||
#ifndef IRSSI_IRC_NOTIFYLIST_NOTIFY_SETUP_H
|
||||
#define IRSSI_IRC_NOTIFYLIST_NOTIFY_SETUP_H
|
||||
|
||||
void notifylist_add_config(NOTIFYLIST_REC *rec);
|
||||
void notifylist_remove_config(NOTIFYLIST_REC *rec);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __NOTIFYLIST_H
|
||||
#define __NOTIFYLIST_H
|
||||
#ifndef IRSSI_IRC_NOTIFYLIST_NOTIFYLIST_H
|
||||
#define IRSSI_IRC_NOTIFYLIST_NOTIFYLIST_H
|
||||
|
||||
typedef struct {
|
||||
char *mask; /* nick part must not contain wildcards */
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef PROXY_H
|
||||
#define PROXY_H
|
||||
#ifndef IRSSI_IRC_PROXY_PROXY_H
|
||||
#define IRSSI_IRC_PROXY_PROXY_H
|
||||
|
||||
#include <irssi/src/common.h>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue