1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 08:13:14 +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
+9 -11
View File
@@ -22,25 +22,23 @@
#include "weechat-plugin.h"
typedef int (t_weechat_init_func) (struct t_weechat_plugin *);
typedef void (t_weechat_end_func) (struct t_weechat_plugin *);
typedef int (t_weechat_init_func) (struct t_weechat_plugin *plugin);
typedef void (t_weechat_end_func) (struct t_weechat_plugin *plugin);
extern struct t_weechat_plugin *weechat_plugins;
extern struct t_weechat_plugin *last_weechat_plugin;
//extern t_plugin_irc_color plugins_irc_colors[GUI_NUM_IRC_COLORS];
extern void plugin_exec_on_files (struct t_weechat_plugin *, char *,
int (*)(struct t_weechat_plugin *, char *));
extern struct t_weechat_plugin *plugin_search (char *);
extern struct t_weechat_plugin *plugin_load (char *);
extern struct t_weechat_plugin *plugin_search (char *name);
extern struct t_weechat_plugin *plugin_load (char *filename);
extern void plugin_auto_load ();
extern void plugin_remove (struct t_weechat_plugin *);
extern void plugin_unload (struct t_weechat_plugin *);
extern void plugin_unload_name (char *);
extern void plugin_remove (struct t_weechat_plugin *plugin);
extern void plugin_unload (struct t_weechat_plugin *plugin);
extern void plugin_unload_name (char *name);
extern void plugin_unload_all ();
extern void plugin_reload_name (char *);
extern void plugin_init (int);
extern void plugin_reload_name (char *name);
extern void plugin_init (int auto_load);
extern void plugin_end ();
extern void plugin_print_log ();