diff options
Diffstat (limited to 'src/plugins/logger/logger-config.h')
-rw-r--r-- | src/plugins/logger/logger-config.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/plugins/logger/logger-config.h b/src/plugins/logger/logger-config.h index 37259630c..50cbc647f 100644 --- a/src/plugins/logger/logger-config.h +++ b/src/plugins/logger/logger-config.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2003-2018 Sébastien Helleu <flashcode@flashtux.org> * * This file is part of WeeChat, the extensible chat client. * @@ -17,19 +17,21 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_LOGGER_CONFIG_H -#define WEECHAT_LOGGER_CONFIG_H 1 +#ifndef WEECHAT_PLUGIN_LOGGER_CONFIG_H +#define WEECHAT_PLUGIN_LOGGER_CONFIG_H #define LOGGER_CONFIG_NAME "logger" extern struct t_config_option *logger_config_look_backlog; +extern struct t_config_option *logger_config_look_backlog_conditions; extern struct t_config_option *logger_config_color_backlog_end; extern struct t_config_option *logger_config_color_backlog_line; extern struct t_config_option *logger_config_file_auto_log; extern struct t_config_option *logger_config_file_flush_delay; +extern struct t_config_option *logger_config_file_fsync; extern struct t_config_option *logger_config_file_info_lines; extern struct t_config_option *logger_config_file_mask; extern struct t_config_option *logger_config_file_name_lower_case; @@ -47,4 +49,4 @@ extern int logger_config_read (); extern int logger_config_write (); extern void logger_config_free (); -#endif /* WEECHAT_LOGGER_CONFIG_H */ +#endif /* WEECHAT_PLUGIN_LOGGER_CONFIG_H */ |