1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 18:23:13 +02:00

New backlog option in logger plugin, added variable names in .h files, replaced "void *" pointers by structures

This commit is contained in:
Sebastien Helleu
2007-12-17 17:07:08 +01:00
parent e62ec5204c
commit dba084f3d6
113 changed files with 3146 additions and 3815 deletions
+5 -3
View File
@@ -289,7 +289,8 @@ plugin_config_free_all ()
*/
void
plugin_config_read_option (void *config_file, char *option_name, char *value)
plugin_config_read_option (struct t_config_file *config_file,
char *option_name, char *value)
{
char *value2;
@@ -311,7 +312,8 @@ plugin_config_read_option (void *config_file, char *option_name, char *value)
*/
void
plugin_config_write_options (void *config_file, char *section_name)
plugin_config_write_options (struct t_config_file *config_file,
char *section_name)
{
struct t_config_option *ptr_option;
@@ -383,5 +385,5 @@ int
plugin_config_write ()
{
log_printf (_("Saving plugins configuration to disk"));
return config_file_write (plugin_config, 0);
return config_file_write (plugin_config);
}