Support for XEP-0249 Direct MUC Invitations

Commands /invite, /invites, /decline and /join
This commit is contained in:
James Booth
2013-04-24 23:50:47 +01:00
parent da84aec513
commit 17757c86e6
10 changed files with 174 additions and 25 deletions

View File

@@ -71,6 +71,12 @@ autocomplete_free(Autocomplete ac)
ac = NULL;
}
gint
autocomplete_length(Autocomplete ac)
{
return g_slist_length(ac->items);
}
gboolean
autocomplete_add(Autocomplete ac, void *item)
{