diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-10-15 12:34:21 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-10-15 12:34:21 +0000 |
commit | cdc33d08b0d964a03e45b3582d8ba9b69e682486 (patch) | |
tree | 08f3bb88ba2c0ed1348d5b386892d43bab5f9c59 /src/common/weeconfig.h | |
parent | 5130b1dc4fd2f2cc50165cd291fc37246c988bec (diff) | |
download | weechat-cdc33d08b0d964a03e45b3582d8ba9b69e682486.zip |
New plugin interface (loads dynamic C libraries)
Diffstat (limited to 'src/common/weeconfig.h')
-rw-r--r-- | src/common/weeconfig.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/common/weeconfig.h b/src/common/weeconfig.h index af50eb747..29199bd90 100644 --- a/src/common/weeconfig.h +++ b/src/common/weeconfig.h @@ -33,11 +33,12 @@ #define CONFIG_SECTION_IRC 4 #define CONFIG_SECTION_DCC 5 #define CONFIG_SECTION_PROXY 6 -#define CONFIG_SECTION_KEYS 7 -#define CONFIG_SECTION_ALIAS 8 -#define CONFIG_SECTION_IGNORE 9 -#define CONFIG_SECTION_SERVER 10 -#define CONFIG_NUMBER_SECTIONS 11 +#define CONFIG_SECTION_PLUGINS 7 +#define CONFIG_SECTION_KEYS 8 +#define CONFIG_SECTION_ALIAS 9 +#define CONFIG_SECTION_IGNORE 10 +#define CONFIG_SECTION_SERVER 11 +#define CONFIG_NUMBER_SECTIONS 12 #define OPTION_TYPE_BOOLEAN 1 /* values: on/off */ #define OPTION_TYPE_INT 2 /* values: from min to max */ @@ -202,6 +203,10 @@ extern int cfg_proxy_port; extern char *cfg_proxy_username; extern char *cfg_proxy_password; +extern char *cfg_plugins_path; +extern char *cfg_plugins_autoload; +extern char *cfg_plugins_extension; + extern t_config_section config_sections [CONFIG_NUMBER_SECTIONS]; extern t_config_option * weechat_options [CONFIG_NUMBER_SECTIONS]; |