comparison plugins/signals-test.c @ 9514:1fac0336890c

[gaim-migrate @ 10341] Gary Kramlich writes: " This patch modifies the chat-invited signal to also give out the GHashTable of the chat components so a call back can successful join a chat when the signal is emited." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 12 Jul 2004 02:40:12 +0000
parents 826013efffcb
children 0524b36c701a
comparison
equal deleted inserted replaced
9513:ac94e3f5ac8a 9514:1fac0336890c
390 gaim_conversation_get_name(conv), name, reason); 390 gaim_conversation_get_name(conv), name, reason);
391 } 391 }
392 392
393 static void 393 static void
394 chat_invited_cb(GaimAccount *account, const char *inviter, 394 chat_invited_cb(GaimAccount *account, const char *inviter,
395 const char *room_name, const char *message, void *data) 395 const char *room_name, const char *message,
396 const GHashTable *components, void *data)
396 { 397 {
397 gaim_debug_misc("signals test", "chat-invited (%s, %s, %s, %s)\n", 398 gaim_debug_misc("signals test", "chat-invited (%s, %s, %s, %s)\n",
398 gaim_account_get_username(account), inviter, 399 gaim_account_get_username(account), inviter,
399 room_name, message); 400 room_name, message);
400 } 401 }