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