comparison libpurple/protocols/msn/msn.c @ 24928:f89bdd34c9f1

propagate from branch 'im.pidgin.pidgin' (head 9860b693346097316a1c47ef0fb094355c3e49ae) to branch 'im.pidgin.maiku.vv' (head f0acd587065379d3fe66e65e1f3a31d8e456ec88)
author Mike Ruprecht <maiku@soc.pidgin.im>
date Wed, 27 Aug 2008 07:49:52 +0000
parents b664b3924a52 e22bcca9f2b2
children 4d752d07a126
comparison
equal deleted inserted replaced
23993:519b877a59f5 24928:f89bdd34c9f1
2526 NULL, /* send_raw */ 2526 NULL, /* send_raw */
2527 NULL, /* roomlist_room_serialize */ 2527 NULL, /* roomlist_room_serialize */
2528 NULL, /* unregister_user */ 2528 NULL, /* unregister_user */
2529 msn_send_attention, /* send_attention */ 2529 msn_send_attention, /* send_attention */
2530 msn_attention_types, /* attention_types */ 2530 msn_attention_types, /* attention_types */
2531
2532 sizeof(PurplePluginProtocolInfo), /* struct_size */ 2531 sizeof(PurplePluginProtocolInfo), /* struct_size */
2533 msn_get_account_text_table, /* get_account_text_table */ 2532 msn_get_account_text_table, /* get_account_text_table */
2533 NULL, /* initiate_media */
2534 NULL /* can_do_media */
2534 }; 2535 };
2535 2536
2536 static PurplePluginInfo info = 2537 static PurplePluginInfo info =
2537 { 2538 {
2538 PURPLE_PLUGIN_MAGIC, 2539 PURPLE_PLUGIN_MAGIC,
2610 purple_signal_connect(purple_get_core(), "uri-handler", plugin, 2611 purple_signal_connect(purple_get_core(), "uri-handler", plugin,
2611 PURPLE_CALLBACK(msn_uri_handler), NULL); 2612 PURPLE_CALLBACK(msn_uri_handler), NULL);
2612 } 2613 }
2613 2614
2614 PURPLE_INIT_PLUGIN(msn, init_plugin, info); 2615 PURPLE_INIT_PLUGIN(msn, init_plugin, info);
2616