Mercurial > pidgin
comparison libpurple/protocols/bonjour/bonjour.c @ 23840:3da0957e7821
propagate from branch 'im.pidgin.pidgin' (head 868098fbe53290a8abcc3307c6fec2c6054a5e00)
to branch 'im.pidgin.soc.2008.vv' (head eb4a2834050e39f5387e97121b534adb7ffd1234)
author | Mike Ruprecht <maiku@soc.pidgin.im> |
---|---|
date | Thu, 26 Jun 2008 20:25:38 +0000 |
parents | 5c70d953a497 ff29208e03ef |
children | e23b447aa5ca |
comparison
equal
deleted
inserted
replaced
23392:eac0561dfd55 | 23840:3da0957e7821 |
---|---|
497 bonjour_new_xfer, /* new_xfer */ | 497 bonjour_new_xfer, /* new_xfer */ |
498 NULL, /* offline_message */ | 498 NULL, /* offline_message */ |
499 NULL, /* whiteboard_prpl_ops */ | 499 NULL, /* whiteboard_prpl_ops */ |
500 NULL, /* send_raw */ | 500 NULL, /* send_raw */ |
501 NULL, /* roomlist_room_serialize */ | 501 NULL, /* roomlist_room_serialize */ |
502 | 502 NULL, /* unregister_user */ |
503 /* padding */ | 503 NULL, /* send_attention */ |
504 NULL, | 504 NULL, /* get_attention_types */ |
505 NULL, | 505 sizeof(PurplePluginProtocolInfo), /* struct_size */ |
506 NULL, | 506 NULL, /* get_account_text_table */ |
507 sizeof(PurplePluginProtocolInfo), /* struct_size */ | 507 NULL, /* initiate_media */ |
508 NULL | 508 NULL /* can_do_media */ |
509 }; | 509 }; |
510 | 510 |
511 static PurplePluginInfo info = | 511 static PurplePluginInfo info = |
512 { | 512 { |
513 PURPLE_PLUGIN_MAGIC, | 513 PURPLE_PLUGIN_MAGIC, |
730 | 730 |
731 my_protocol = plugin; | 731 my_protocol = plugin; |
732 } | 732 } |
733 | 733 |
734 PURPLE_INIT_PLUGIN(bonjour, init_plugin, info); | 734 PURPLE_INIT_PLUGIN(bonjour, init_plugin, info); |
735 |