1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

Converted old Ruby interface to new plugin system (Ruby plugin still NOT ok!)

This commit is contained in:
Sebastien Helleu
2005-10-23 11:33:39 +00:00
parent cde66456fb
commit f7872a9dd8
10 changed files with 1054 additions and 720 deletions
+2
View File
@@ -116,6 +116,7 @@ struct t_weechat_plugin
existing plugins */
int (*ascii_strcasecmp) (t_weechat_plugin *, char *, char *);
int (*ascii_strncasecmp) (t_weechat_plugin *, char *, char *, int);
char **(*explode_string) (t_weechat_plugin *, char *, char *, int, int *);
void (*free_exploded_string) (t_weechat_plugin *, char **);
int (*mkdir_home) (t_weechat_plugin *, char *);
@@ -149,6 +150,7 @@ struct t_weechat_plugin
/* general useful functions */
extern int weechat_ascii_strcasecmp (t_weechat_plugin *,char *, char *);
extern int weechat_ascii_strncasecmp (t_weechat_plugin *,char *, char *, int);
extern char **weechat_explode_string (t_weechat_plugin *, char *, char *, int, int *);
extern void weechat_free_exploded_string (t_weechat_plugin *, char **);
extern int weechat_plugin_mkdir_home (t_weechat_plugin *, char *);