Plugins: Added basic incoming message function

This commit is contained in:
James Booth
2016-03-29 23:44:54 +01:00
parent 94b9b1d8e4
commit 194c53c4fa
6 changed files with 48 additions and 6 deletions

View File

@@ -77,3 +77,5 @@ char* (*prof_settings_get_string)(char *group, char *key, char *def) = NULL;
void (*prof_settings_set_string)(char *group, char *key, char *value) = NULL;
int (*prof_settings_get_int)(char *group, char *key, int def) = NULL;
void (*prof_settings_set_int)(char *group, char *key, int value) = NULL;
void (*prof_incoming_message)(char *barejid, char *resource, char *message) = NULL;