Added /resource autocompletion

This commit is contained in:
James Booth
2014-12-04 00:16:42 +00:00
parent eeb6e6b8fc
commit 5314e59703
3 changed files with 72 additions and 1 deletions

View File

@@ -36,6 +36,7 @@
#define CONTACT_H
#include "resource.h"
#include "tools/autocomplete.h"
typedef struct p_contact_t *PContact;
@@ -68,5 +69,7 @@ GSList * p_contact_groups(const PContact contact);
gboolean p_contact_in_group(const PContact contact, const char * const group);
gboolean p_contact_subscribed(const PContact contact);
char * p_contact_create_display_string(const PContact contact, const char * const resource);
Autocomplete p_contact_resource_ac(const PContact contact);
void p_contact_resource_ac_reset(const PContact contact);
#endif