Added prof_send_stanza to plugins API

This commit is contained in:
James Booth
2016-03-23 22:57:03 +00:00
parent 503fc9e393
commit 4c913aa08b
10 changed files with 61 additions and 6 deletions

View File

@@ -188,6 +188,12 @@ c_api_win_show_themed(char *tag, char *group, char *key, char *def, char *line)
return api_win_show_themed(tag, group, key, def, line);
}
static int
c_api_send_stanza(char *stanza)
{
return api_send_stanza(stanza);
}
void
c_command_callback(PluginCommand *command, gchar **args)
{
@@ -236,4 +242,5 @@ c_api_init(void)
prof_win_focus = c_api_win_focus;
prof_win_show = c_api_win_show;
prof_win_show_themed = c_api_win_show_themed;
prof_send_stanza = c_api_send_stanza;
}