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 __CHAT_COMPLETION_H
|
||||
#define __CHAT_COMPLETION_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_CHAT_COMPLETION_H
|
||||
#define IRSSI_FE_COMMON_CORE_CHAT_COMPLETION_H
|
||||
|
||||
GList *completion_get_chatnets(const char *word);
|
||||
GList *completion_get_servers(const char *word);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __COMMAND_HISTORY_H
|
||||
#define __COMMAND_HISTORY_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_COMMAND_HISTORY_H
|
||||
#define IRSSI_FE_COMMON_CORE_COMMAND_HISTORY_H
|
||||
|
||||
#include <irssi/src/common.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __COMPLETION_H
|
||||
#define __COMPLETION_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_COMPLETION_H
|
||||
#define IRSSI_FE_COMMON_CORE_COMPLETION_H
|
||||
|
||||
#include <irssi/src/fe-common/core/window-items.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_CAPSICUM_H
|
||||
#define __FE_CAPSICUM_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_CAPSICUM_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_CAPSICUM_H
|
||||
|
||||
void fe_capsicum_init(void);
|
||||
void fe_capsicum_deinit(void);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_CHANNELS_H
|
||||
#define __FE_CHANNELS_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_CHANNELS_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_CHANNELS_H
|
||||
|
||||
#define CHANNEL_NICKLIST_FLAG_OPS 0x01
|
||||
#define CHANNEL_NICKLIST_FLAG_HALFOPS 0x02
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_COMMON_CORE_H
|
||||
#define __FE_COMMON_CORE_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_COMMON_CORE_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_COMMON_CORE_H
|
||||
|
||||
void fe_common_core_register_options(void);
|
||||
void fe_common_core_init(void);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_CORE_COMMANDS_H
|
||||
#define __FE_CORE_COMMANDS_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_CORE_COMMANDS_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_CORE_COMMANDS_H
|
||||
|
||||
extern int command_hide_output;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_EXEC_H
|
||||
#define __FE_EXEC_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_EXEC_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_EXEC_H
|
||||
|
||||
#include <irssi/src/fe-common/core/fe-windows.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_MESSAGES_H
|
||||
#define __FE_MESSAGES_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_MESSAGES_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_MESSAGES_H
|
||||
|
||||
/* convert _underlined_ and *bold* words (and phrases) to use real
|
||||
underlining or bolding */
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_QUERIES_H
|
||||
#define __FE_QUERIES_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_QUERIES_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_QUERIES_H
|
||||
|
||||
#include <irssi/src/core/queries.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef __FE_RECODE_H
|
||||
#define __FE_RECODE_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_RECODE_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_RECODE_H
|
||||
|
||||
void fe_recode_init (void);
|
||||
void fe_recode_deinit (void);
|
||||
|
||||
#endif /* __FE_RECODE_H */
|
||||
#endif /* IRSSI_FE_COMMON_CORE_FE_RECODE_H */
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FE_SETTINGS_H
|
||||
#define __FE_SETTINGS_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_SETTINGS_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_SETTINGS_H
|
||||
|
||||
void fe_settings_set_print(const char *key);
|
||||
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@
|
|||
* Franklin Street, Fifth Floor, Boston, MA 02110-1301,USA
|
||||
*/
|
||||
|
||||
#ifndef __FE_TLS_H
|
||||
#define __FE_TLS_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_TLS_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_TLS_H
|
||||
|
||||
void fe_tls_init(void);
|
||||
void fe_tls_deinit(void);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __WINDOWS_H
|
||||
#define __WINDOWS_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FE_WINDOWS_H
|
||||
#define IRSSI_FE_COMMON_CORE_FE_WINDOWS_H
|
||||
|
||||
#include <irssi/src/core/window-item-def.h>
|
||||
#include <irssi/src/fe-common/core/command-history.h>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __FORMATS_H
|
||||
#define __FORMATS_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_FORMATS_H
|
||||
#define IRSSI_FE_COMMON_CORE_FORMATS_H
|
||||
|
||||
#include <irssi/src/fe-common/core/themes.h>
|
||||
#include <irssi/src/fe-common/core/fe-windows.h>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __HILIGHT_TEXT_H
|
||||
#define __HILIGHT_TEXT_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_HILIGHT_TEXT_H
|
||||
#define IRSSI_FE_COMMON_CORE_HILIGHT_TEXT_H
|
||||
|
||||
#include <irssi/src/core/iregex.h>
|
||||
#include <irssi/src/fe-common/core/formats.h>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __KEYBOARD_H
|
||||
#define __KEYBOARD_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_KEYBOARD_H
|
||||
#define IRSSI_FE_COMMON_CORE_KEYBOARD_H
|
||||
|
||||
#include <irssi/src/core/signals.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PRINTTEXT_H
|
||||
#define __PRINTTEXT_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_PRINTTEXT_H
|
||||
#define IRSSI_FE_COMMON_CORE_PRINTTEXT_H
|
||||
|
||||
#include <irssi/src/fe-common/core/fe-windows.h>
|
||||
#include <irssi/src/fe-common/core/formats.h>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __THEMES_H
|
||||
#define __THEMES_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_THEMES_H
|
||||
#define IRSSI_FE_COMMON_CORE_THEMES_H
|
||||
|
||||
typedef struct {
|
||||
char *name;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __WINDOW_ACTIVITY_H
|
||||
#define __WINDOW_ACTIVITY_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_WINDOW_ACTIVITY_H
|
||||
#define IRSSI_FE_COMMON_CORE_WINDOW_ACTIVITY_H
|
||||
|
||||
void window_activity(WINDOW_REC *window, int data_level,
|
||||
const char *hilight_color);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __WINDOW_ITEMS_H
|
||||
#define __WINDOW_ITEMS_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_WINDOW_ITEMS_H
|
||||
#define IRSSI_FE_COMMON_CORE_WINDOW_ITEMS_H
|
||||
|
||||
#include <irssi/src/fe-common/core/fe-windows.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __WINDOWS_LAYOUT_H
|
||||
#define __WINDOWS_LAYOUT_H
|
||||
#ifndef IRSSI_FE_COMMON_CORE_WINDOWS_LAYOUT_H
|
||||
#define IRSSI_FE_COMMON_CORE_WINDOWS_LAYOUT_H
|
||||
|
||||
void windows_layout_restore(void);
|
||||
void windows_layout_save(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue