# HG changeset patch # User Gary Kramlich # Date 1177893244 0 # Node ID 3d41d0d7fb9b8e0980832542e70442733da570dc # Parent 30829e806daecb28ebde6b45646b062488a2b2be Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/gtkplugin.h --- a/pidgin/gtkplugin.h Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/gtkplugin.h Mon Apr 30 00:34:04 2007 +0000 @@ -38,6 +38,12 @@ GtkWidget *(*get_config_frame)(PurplePlugin *plugin); int page_num; /**< Reserved */ + + /* padding */ + void (*_pidgin_reserved1)(void); + void (*_pidgin_reserved2)(void); + void (*_pidgin_reserved3)(void); + void (*_pidgin_reserved4)(void); }; #define PIDGIN_PLUGIN_TYPE PIDGIN_UI diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/convcolors.c --- a/pidgin/plugins/convcolors.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/convcolors.c Mon Apr 30 00:34:04 2007 +0000 @@ -319,6 +319,12 @@ { get_config_frame, 0, + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -347,7 +353,13 @@ &ui_info, /* ui_info */ NULL, /* extra_info */ NULL, /* prefs_info */ - NULL /* actions */ + NULL, /* actions */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/extplacement.c --- a/pidgin/plugins/extplacement.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/extplacement.c Mon Apr 30 00:34:04 2007 +0000 @@ -118,7 +118,13 @@ static PurplePluginUiInfo prefs_info = { get_plugin_pref_frame, 0, /* page_num (Reserved) */ - NULL /* frame (Reserved) */ + NULL, /* frame (Reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -146,7 +152,13 @@ NULL, /**< ui_info */ NULL, /**< extra_info */ &prefs_info, /**< prefs_info */ - NULL /**< actions */ + NULL, /**< actions */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/gestures/gestures.c --- a/pidgin/plugins/gestures/gestures.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/gestures/gestures.c Mon Apr 30 00:34:04 2007 +0000 @@ -271,7 +271,13 @@ static PidginPluginUiInfo ui_info = { get_config_frame, - 0 /* page_num (Reserved) */ + 0, /* page_num (Reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -308,6 +314,12 @@ &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/history.c --- a/pidgin/plugins/history.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/history.c Mon Apr 30 00:34:04 2007 +0000 @@ -198,6 +198,12 @@ NULL, NULL, NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/iconaway.c --- a/pidgin/plugins/iconaway.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/iconaway.c Mon Apr 30 00:34:04 2007 +0000 @@ -95,6 +95,12 @@ NULL, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/markerline.c --- a/pidgin/plugins/markerline.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/markerline.c Mon Apr 30 00:34:04 2007 +0000 @@ -261,6 +261,12 @@ get_plugin_pref_frame, 0, NULL, + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = { @@ -288,7 +294,13 @@ NULL, /* ui_info */ NULL, /* extra_info */ &prefs_info, /* prefs_info */ - NULL /* actions */ + NULL, /* actions */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/musicmessaging/musicmessaging.c --- a/pidgin/plugins/musicmessaging/musicmessaging.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/musicmessaging/musicmessaging.c Mon Apr 30 00:34:04 2007 +0000 @@ -649,7 +649,13 @@ static PidginPluginUiInfo ui_info = { get_config_frame, - 0 /* page_num (reserved) */ + 0, /* page_num (reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = { @@ -677,7 +683,13 @@ &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, - NULL + NULL, + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/notify.c --- a/pidgin/plugins/notify.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/notify.c Mon Apr 30 00:34:04 2007 +0000 @@ -877,7 +877,13 @@ static PidginPluginUiInfo ui_info = { get_config_frame, - 0 /* page_num (Reserved) */ + 0, /* page_num (Reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -909,6 +915,12 @@ &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/pidginrc.c --- a/pidgin/plugins/pidginrc.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/pidginrc.c Mon Apr 30 00:34:04 2007 +0000 @@ -599,7 +599,13 @@ static PidginPluginUiInfo purplerc_ui_info = { purplerc_get_config_frame, - 0 /* page_num (Reserved) */ + 0, /* page_num (Reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo purplerc_info = @@ -625,6 +631,12 @@ &purplerc_ui_info, NULL, NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/relnot.c --- a/pidgin/plugins/relnot.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/relnot.c Mon Apr 30 00:34:04 2007 +0000 @@ -159,6 +159,12 @@ NULL, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/spellchk.c --- a/pidgin/plugins/spellchk.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/spellchk.c Mon Apr 30 00:34:04 2007 +0000 @@ -2350,7 +2350,13 @@ static PidginPluginUiInfo ui_info = { get_config_frame, - 0 /* page_num (Reserved) */ + 0, /* page_num (Reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -2376,6 +2382,12 @@ &ui_info, NULL, NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/ticker/ticker.c --- a/pidgin/plugins/ticker/ticker.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/ticker/ticker.c Mon Apr 30 00:34:04 2007 +0000 @@ -368,6 +368,12 @@ NULL, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/timestamp.c --- a/pidgin/plugins/timestamp.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/timestamp.c Mon Apr 30 00:34:04 2007 +0000 @@ -178,7 +178,13 @@ static PidginPluginUiInfo ui_info = { get_config_frame, - 0 /* page_num (Reserved) */ + 0, /* page_num (Reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -209,6 +215,12 @@ &ui_info, /**< ui_info */ NULL, /**< extra_info */ NULL, + NULL, + + /* padding */ + NULL, + NULL, + NULL, NULL }; diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/timestamp_format.c --- a/pidgin/plugins/timestamp_format.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/timestamp_format.c Mon Apr 30 00:34:04 2007 +0000 @@ -126,7 +126,13 @@ static PurplePluginUiInfo prefs_info = { get_plugin_pref_frame, 0, /* page num (Reserved) */ - NULL /* frame (Reserved) */ + NULL,/* frame (Reserved) */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static PurplePluginInfo info = @@ -159,7 +165,13 @@ NULL, /**< ui_info */ NULL, /**< extra_info */ &prefs_info, /**< prefs_info */ - NULL /**< actions */ + NULL, /**< actions */ + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void diff -r 30829e806dae -r 3d41d0d7fb9b pidgin/plugins/xmppconsole.c --- a/pidgin/plugins/xmppconsole.c Mon Apr 30 00:17:43 2007 +0000 +++ b/pidgin/plugins/xmppconsole.c Mon Apr 30 00:34:04 2007 +0000 @@ -873,7 +873,13 @@ NULL, /**< ui_info */ NULL, /**< extra_info */ NULL, - actions + actions, + + /* padding */ + NULL, + NULL, + NULL, + NULL }; static void