Added function to create message stanzas

This commit is contained in:
James Booth
2012-11-08 23:31:21 +00:00
parent dac4cf3c3c
commit 29b5abfe06
3 changed files with 52 additions and 37 deletions

View File

@@ -28,4 +28,7 @@
xmpp_stanza_t* stanza_create_chat_state(xmpp_ctx_t *ctx,
const char * const recipient, const char * const state);
xmpp_stanza_t* stanza_create_message(xmpp_ctx_t *ctx,
const char * const recipient, const char * const type,
const char * const message, const char * const state);
#endif