comparison libpurple/protocols/msn/msn.c @ 25718:4bc74deeb503

propagate from branch 'im.pidgin.pidgin' (head 434563a4b8fadb9593c241db4bb5ffd0bf2c0627) to branch 'im.pidgin.soc.2008.vv' (head 59d05cb38af9346d82ce57477273f7b381054bcc)
author Mike Ruprecht <maiku@soc.pidgin.im>
date Sat, 09 Aug 2008 02:24:38 +0000
parents 8ba3d6905252 7ff380f97abc
children e22bcca9f2b2
comparison
equal deleted inserted replaced
23742:de8f2d3e538a 25718:4bc74deeb503
2521 NULL, /* send_raw */ 2521 NULL, /* send_raw */
2522 NULL, /* roomlist_room_serialize */ 2522 NULL, /* roomlist_room_serialize */
2523 NULL, /* unregister_user */ 2523 NULL, /* unregister_user */
2524 msn_send_attention, /* send_attention */ 2524 msn_send_attention, /* send_attention */
2525 msn_attention_types, /* attention_types */ 2525 msn_attention_types, /* attention_types */
2526
2527 sizeof(PurplePluginProtocolInfo), /* struct_size */ 2526 sizeof(PurplePluginProtocolInfo), /* struct_size */
2528 msn_get_account_text_table, /* get_account_text_table */ 2527 msn_get_account_text_table, /* get_account_text_table */
2528 NULL, /* initiate_media */
2529 NULL /* can_do_media */
2529 }; 2530 };
2530 2531
2531 static PurplePluginInfo info = 2532 static PurplePluginInfo info =
2532 { 2533 {
2533 PURPLE_PLUGIN_MAGIC, 2534 PURPLE_PLUGIN_MAGIC,
2605 purple_signal_connect(purple_get_core(), "uri-handler", plugin, 2606 purple_signal_connect(purple_get_core(), "uri-handler", plugin,
2606 PURPLE_CALLBACK(msn_uri_handler), NULL); 2607 PURPLE_CALLBACK(msn_uri_handler), NULL);
2607 } 2608 }
2608 2609
2609 PURPLE_INIT_PLUGIN(msn, init_plugin, info); 2610 PURPLE_INIT_PLUGIN(msn, init_plugin, info);
2611