comparison libpurple/protocols/gg/gg.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 94a6eb10c691 d68924f1265f
children e23a74d7c97c
comparison
equal deleted inserted replaced
25446:52fbda23e398 26213:ff4212a5268f
2291 NULL, /* new_xfer */ 2291 NULL, /* new_xfer */
2292 ggp_offline_message, /* offline_message */ 2292 ggp_offline_message, /* offline_message */
2293 NULL, /* whiteboard_prpl_ops */ 2293 NULL, /* whiteboard_prpl_ops */
2294 NULL, /* send_raw */ 2294 NULL, /* send_raw */
2295 NULL, /* roomlist_room_serialize */ 2295 NULL, /* roomlist_room_serialize */
2296 2296 NULL, /* unregister_user */
2297 /* padding */ 2297 NULL, /* send_attention */
2298 NULL, 2298 NULL, /* get_attention_types */
2299 NULL,
2300 NULL,
2301 sizeof(PurplePluginProtocolInfo), /* struct_size */ 2299 sizeof(PurplePluginProtocolInfo), /* struct_size */
2302 NULL 2300 NULL, /* get_account_text_table */
2301 NULL, /* initiate_media */
2302 NULL /* can_do_media */
2303 }; 2303 };
2304 2304
2305 static PurplePluginInfo info = { 2305 static PurplePluginInfo info = {
2306 PURPLE_PLUGIN_MAGIC, /* magic */ 2306 PURPLE_PLUGIN_MAGIC, /* magic */
2307 PURPLE_MAJOR_VERSION, /* major_version */ 2307 PURPLE_MAJOR_VERSION, /* major_version */
2375 } 2375 }
2376 2376
2377 PURPLE_INIT_PLUGIN(gg, init_plugin, info); 2377 PURPLE_INIT_PLUGIN(gg, init_plugin, info);
2378 2378
2379 /* vim: set ts=8 sts=0 sw=8 noet: */ 2379 /* vim: set ts=8 sts=0 sw=8 noet: */
2380