Renamed stanza creation

This commit is contained in:
James Booth
2012-11-10 00:19:49 +00:00
parent 34c21c0a2e
commit 244358afb0
3 changed files with 7 additions and 8 deletions

View File

@@ -75,14 +75,13 @@ 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);
xmpp_stanza_t* stanza_create_room_presence(xmpp_ctx_t *ctx,
xmpp_stanza_t* stanza_create_room_join_presence(xmpp_ctx_t *ctx,
const char * const room, const char * const nick);
xmpp_stanza_t* stanza_create_room_leave(xmpp_ctx_t *ctx,
xmpp_stanza_t* stanza_create_room_leave_presence(xmpp_ctx_t *ctx,
const char * const room, const char * const nick);
xmpp_stanza_t *
stanza_create_presence(xmpp_ctx_t *ctx, const char * const show,
xmpp_stanza_t * stanza_create_presence(xmpp_ctx_t *ctx, const char * const show,
const char * const status);
#endif