comparison libpurple/protocols/simple/simple.c @ 25690: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 6b09c40a15d1 ff29208e03ef
children e22bcca9f2b2
comparison
equal deleted inserted replaced
23394:eac0561dfd55 25690:3da0957e7821
2060 NULL, /* new_xfer */ 2060 NULL, /* new_xfer */
2061 NULL, /* offline_message */ 2061 NULL, /* offline_message */
2062 NULL, /* whiteboard_prpl_ops */ 2062 NULL, /* whiteboard_prpl_ops */
2063 simple_send_raw, /* send_raw */ 2063 simple_send_raw, /* send_raw */
2064 NULL, /* roomlist_room_serialize */ 2064 NULL, /* roomlist_room_serialize */
2065 2065 NULL, /* unregister_user */
2066 /* padding */ 2066 NULL, /* send_attention */
2067 NULL, 2067 NULL, /* get_attention_types */
2068 NULL,
2069 NULL,
2070 sizeof(PurplePluginProtocolInfo), /* struct_size */ 2068 sizeof(PurplePluginProtocolInfo), /* struct_size */
2071 NULL 2069 NULL, /* get_account_text_table */
2070 NULL, /* initiate_media */
2071 NULL /* can_do_media */
2072 }; 2072 };
2073 2073
2074 2074
2075 static PurplePluginInfo info = 2075 static PurplePluginInfo info =
2076 { 2076 {
2132 option = purple_account_option_string_new(_("Auth Domain"), "authdomain", ""); 2132 option = purple_account_option_string_new(_("Auth Domain"), "authdomain", "");
2133 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); 2133 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
2134 } 2134 }
2135 2135
2136 PURPLE_INIT_PLUGIN(simple, _init_plugin, info); 2136 PURPLE_INIT_PLUGIN(simple, _init_plugin, info);
2137