comparison libpurple/protocols/msn/msn.c @ 26213:ff4212a5268f

propagate from branch 'im.pidgin.pidgin' (head 431618de0f30a6938f7e14d2d61ee5d7738acd59) to branch 'im.pidgin.pidgin.vv' (head 8df00cb1a28baa69d0a68e0e96af201ec7d87c09)
author Marcus Lundblad <ml@update.uu.se>
date Mon, 02 Mar 2009 18:47:27 +0000
parents 4b8c4870b13a af42303654a5
children e23a74d7c97c
comparison
equal deleted inserted replaced
25446:52fbda23e398 26213:ff4212a5268f
2605 NULL, /* send_raw */ 2605 NULL, /* send_raw */
2606 NULL, /* roomlist_room_serialize */ 2606 NULL, /* roomlist_room_serialize */
2607 NULL, /* unregister_user */ 2607 NULL, /* unregister_user */
2608 msn_send_attention, /* send_attention */ 2608 msn_send_attention, /* send_attention */
2609 msn_attention_types, /* attention_types */ 2609 msn_attention_types, /* attention_types */
2610
2611 sizeof(PurplePluginProtocolInfo), /* struct_size */ 2610 sizeof(PurplePluginProtocolInfo), /* struct_size */
2612 msn_get_account_text_table, /* get_account_text_table */ 2611 msn_get_account_text_table, /* get_account_text_table */
2612 NULL, /* initiate_media */
2613 NULL /* can_do_media */
2613 }; 2614 };
2614 2615
2615 static PurplePluginInfo info = 2616 static PurplePluginInfo info =
2616 { 2617 {
2617 PURPLE_PLUGIN_MAGIC, 2618 PURPLE_PLUGIN_MAGIC,
2686 purple_signal_connect(purple_get_core(), "uri-handler", plugin, 2687 purple_signal_connect(purple_get_core(), "uri-handler", plugin,
2687 PURPLE_CALLBACK(msn_uri_handler), NULL); 2688 PURPLE_CALLBACK(msn_uri_handler), NULL);
2688 } 2689 }
2689 2690
2690 PURPLE_INIT_PLUGIN(msn, init_plugin, info); 2691 PURPLE_INIT_PLUGIN(msn, init_plugin, info);
2692