diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-11-11 17:05:42 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-11-11 17:05:42 +0100 |
commit | ac30e2226d2aac2dbd6a34bd12aa1c8902010662 (patch) | |
tree | 2d10753494c0550eaaa6f204c67963d7a56b7f43 /src/core/wee-config.h | |
parent | cdc08d6fc38d0c81e4826930b266f74a33ca2185 (diff) | |
download | weechat-ac30e2226d2aac2dbd6a34bd12aa1c8902010662.zip |
Added log directory creation in logger plugin, removed unused log config options in core
Diffstat (limited to 'src/core/wee-config.h')
-rw-r--r-- | src/core/wee-config.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/core/wee-config.h b/src/core/wee-config.h index 2918cb32c..ac62dbe32 100644 --- a/src/core/wee-config.h +++ b/src/core/wee-config.h @@ -157,11 +157,6 @@ extern int cfg_history_max_lines; extern int cfg_history_max_commands; extern int cfg_history_display_default; -extern struct t_config_option weechat_options_log[]; -extern int cfg_log_plugin_msg; -extern char *cfg_log_path; -extern char *cfg_log_time_format; - extern struct t_config_option weechat_options_proxy[]; extern int cfg_proxy_use; extern int cfg_proxy_type; @@ -189,22 +184,18 @@ extern void weechat_config_change_buffer_time_format (); extern void weechat_config_change_hotlist (); extern void weechat_config_change_read_marker (); extern void weechat_config_change_prefix (); -extern void weechat_config_change_charset (); extern void weechat_config_change_color (); extern void weechat_config_change_nicks_colors (); -extern void weechat_config_change_away_check (); -extern void weechat_config_change_fifo_pipe (); -extern void weechat_config_change_log (); extern int weechat_config_read_alias (struct t_config_option *, char *, char *); extern int weechat_config_read_key (struct t_config_option *, char *, char *); +extern int weechat_config_read (); extern int weechat_config_write_alias (FILE *, char *, struct t_config_option *); extern int weechat_config_write_keys (FILE *, char *, struct t_config_option *); extern int weechat_config_write_alias_default_values (FILE *, char *, struct t_config_option *); extern int weechat_config_write_keys_default_values (FILE *, char *, struct t_config_option *); -extern int weechat_config_read (); extern int weechat_config_write (); extern void weechat_config_print_stdout (); |