pidgin/purple-plugin-pack

b665b9d0acdd
Parents 930abc599db3
Children 6efedc2e0902
Clean up some missing initializer warnings from mingw
--- a/colorize/colorize.c Sat Dec 04 09:40:21 2010 -0500
+++ b/colorize/colorize.c Sat Dec 04 10:43:09 2010 -0500
@@ -229,7 +229,12 @@
}
static PurplePluginUiInfo prefs_info = {
- init_pref_frame
+ init_pref_frame,
+ 0,
+ NULL,
+ NULL,
+ NULL,
+ NULL
};
static PurplePluginInfo info =
@@ -258,6 +263,10 @@
NULL,
NULL,
&prefs_info,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
NULL
};
--- a/dewysiwygification/dewysiwygification.c Sat Dec 04 09:40:21 2010 -0500
+++ b/dewysiwygification/dewysiwygification.c Sat Dec 04 10:43:09 2010 -0500
@@ -112,6 +112,10 @@
NULL,
NULL,
NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
NULL
};
--- a/findip/findip.c Sat Dec 04 09:40:21 2010 -0500
+++ b/findip/findip.c Sat Dec 04 10:43:09 2010 -0500
@@ -157,7 +157,11 @@
NULL, /* ui_info */
NULL, /* extra_info */
&pref_info, /* prefs_info */
- NULL /* actions */
+ NULL, /* actions */
+ NULL, /* reserved */
+ NULL, /* reserved */
+ NULL, /* reserved */
+ NULL /* reserved */
};
static void
--- a/napster/napster.c Sat Dec 04 09:40:21 2010 -0500
+++ b/napster/napster.c Sat Dec 04 10:43:09 2010 -0500
@@ -699,6 +699,12 @@
NULL, /* send_attention */
NULL, /* get_attention_types */
sizeof(PurplePluginProtocolInfo), /* struct_size */
+ NULL, /* get_account_text_table */
+ NULL, /* initiate_media */
+ NULL, /* get_media_caps */
+ NULL, /* get_moods */
+ NULL, /* set_public_alias */
+ NULL /* get_public_alias */
};
static PurplePluginInfo info = {
--- a/snpp/snpp.c Sat Dec 04 09:40:21 2010 -0500
+++ b/snpp/snpp.c Sat Dec 04 10:43:09 2010 -0500
@@ -545,7 +545,13 @@
NULL, /* unregister_user */
NULL, /* send_attention */
NULL, /* get_attention_types */
- sizeof(PurplePluginProtocolInfo), /* struct_size */
+ sizeof(PurplePluginProtocolInfo),/* struct_size */
+ NULL, /* get_account_text_table */
+ NULL, /* initiate_media */
+ NULL, /* get_media_caps */
+ NULL, /* get_moods */
+ NULL, /* set_public_alias */
+ NULL /* get_public_alias */
};
--- a/timelog/timelog.c Sat Dec 04 09:40:21 2010 -0500
+++ b/timelog/timelog.c Sat Dec 04 10:43:09 2010 -0500
@@ -172,7 +172,7 @@
/** desc */
N_("Allows the viewing of Pidgin logs within a specific time range"),
"Jon Oberheide <jon@oberheide.org>", /**< author */
- "http://jon.oberheide.org/projects/gaim-timelog/",
+ PP_WEBSITE,
/**< homepage */
load_plugin, /**< load */
unload_plugin, /**< unload */
@@ -180,7 +180,11 @@
NULL, /**< ui_info */
NULL, /**< extra_info */
NULL, /**< pref info */
- actions
+ actions,
+ NULL,
+ NULL,
+ NULL,
+ NULL
};
static void
--- a/translate/translate.c Sat Dec 04 09:40:21 2010 -0500
+++ b/translate/translate.c Sat Dec 04 10:43:09 2010 -0500
@@ -957,7 +957,13 @@
NULL,
NULL,
&prefs_info,
- NULL
+ NULL,
+
+ /* reserved */
+ NULL,
+ NULL,
+ NULL,
+ NULL
};
PURPLE_INIT_PLUGIN(translate, init_plugin, info);