comparison libpurple/protocols/jabber/chat.h @ 28373:63dc67b32577

jabber: Use the newly refactored code to simplify "Initiate Chat".
author Paul Aurich <paul@darkrain42.org>
date Mon, 12 Oct 2009 18:24:37 +0000
parents 724e77faee1a
children 08ffa726aea2
comparison
equal deleted inserted replaced
28372:724e77faee1a 28373:63dc67b32577
61 /** 61 /**
62 * in-prpl function for joining a chat room. Doesn't require sticking goop 62 * in-prpl function for joining a chat room. Doesn't require sticking goop
63 * into a hash table. 63 * into a hash table.
64 * 64 *
65 * @param password The password (if required) to join the room. May be NULL. 65 * @param password The password (if required) to join the room. May be NULL.
66 * @param data A hash table (since it's still required for the core 66 * @param data The chat hash table. May be NULL (it will be generated
67 * interface API). 67 * for current core<>prpl API interface.)
68 */ 68 */
69 JabberChat *jabber_join_chat(JabberStream *js, const char *room, 69 JabberChat *jabber_join_chat(JabberStream *js, const char *room,
70 const char *server, const char *handle, 70 const char *server, const char *handle,
71 const char *password, GHashTable *data); 71 const char *password, GHashTable *data);
72 72