comparison libpurple/protocols/msnp9/msn.c @ 23807:ff29208e03ef

propagate from branch 'im.pidgin.pidgin' (head 75f0460d3679231b61d572e76fe02534a597c6b5) to branch 'im.pidgin.pidgin.vv' (head 7872d32a910cd4c1fbc3e2457295e4c1d40188f5)
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Tue, 27 May 2008 06:27:46 +0000
parents e0bcb8cfda74 92e71f6e10d4
children e22bcca9f2b2
comparison
equal deleted inserted replaced
23220:01e1468da703 23807:ff29208e03ef
2274 NULL, /* send_raw */ 2274 NULL, /* send_raw */
2275 NULL, /* roomlist_room_serialize */ 2275 NULL, /* roomlist_room_serialize */
2276 NULL, /* unregister_user */ 2276 NULL, /* unregister_user */
2277 msn_send_attention, /* send_attention */ 2277 msn_send_attention, /* send_attention */
2278 msn_attention_types, /* attention_types */ 2278 msn_attention_types, /* attention_types */
2279
2280 sizeof(PurplePluginProtocolInfo), /* struct_size */ 2279 sizeof(PurplePluginProtocolInfo), /* struct_size */
2281 msn_get_account_text_table, /* get_account_text_table */ 2280 msn_get_account_text_table, /* get_account_text_table */
2281 NULL, /* initiate_media */
2282 NULL /* can_do_media */
2282 }; 2283 };
2283 2284
2284 static PurplePluginInfo info = 2285 static PurplePluginInfo info =
2285 { 2286 {
2286 PURPLE_PLUGIN_MAGIC, 2287 PURPLE_PLUGIN_MAGIC,
2357 purple_signal_connect(purple_get_core(), "uri-handler", plugin, 2358 purple_signal_connect(purple_get_core(), "uri-handler", plugin,
2358 PURPLE_CALLBACK(msn_uri_handler), NULL); 2359 PURPLE_CALLBACK(msn_uri_handler), NULL);
2359 } 2360 }
2360 2361
2361 PURPLE_INIT_PLUGIN(msnp9, init_plugin, info); 2362 PURPLE_INIT_PLUGIN(msnp9, init_plugin, info);
2363