comparison libpurple/protocols/yahoo/yahoo.c @ 26004: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 18a1f0fe5f40 e22bcca9f2b2
children bb99ee66120e
comparison
equal deleted inserted replaced
23923:519b877a59f5 26004:f89bdd34c9f1
4382 yahoo_offline_message, /* offline_message */ 4382 yahoo_offline_message, /* offline_message */
4383 &yahoo_whiteboard_prpl_ops, 4383 &yahoo_whiteboard_prpl_ops,
4384 NULL, /* send_raw */ 4384 NULL, /* send_raw */
4385 NULL, /* roomlist_room_serialize */ 4385 NULL, /* roomlist_room_serialize */
4386 NULL, /* unregister_user */ 4386 NULL, /* unregister_user */
4387
4388 yahoo_send_attention, 4387 yahoo_send_attention,
4389 yahoo_attention_types, 4388 yahoo_attention_types,
4390
4391 sizeof(PurplePluginProtocolInfo), /* struct_size */ 4389 sizeof(PurplePluginProtocolInfo), /* struct_size */
4392 NULL 4390 NULL, /* get_account_text_table */
4391 NULL, /* initiate_media */
4392 NULL /* can_do_media */
4393 }; 4393 };
4394 4394
4395 static PurplePluginInfo info = 4395 static PurplePluginInfo info =
4396 { 4396 {
4397 PURPLE_PLUGIN_MAGIC, 4397 PURPLE_PLUGIN_MAGIC,
4480 purple_signal_connect(purple_get_core(), "uri-handler", plugin, 4480 purple_signal_connect(purple_get_core(), "uri-handler", plugin,
4481 PURPLE_CALLBACK(yahoo_uri_handler), NULL); 4481 PURPLE_CALLBACK(yahoo_uri_handler), NULL);
4482 } 4482 }
4483 4483
4484 PURPLE_INIT_PLUGIN(yahoo, init_plugin, info); 4484 PURPLE_INIT_PLUGIN(yahoo, init_plugin, info);
4485