comparison pidgin/plugins/extplacement.c @ 16678:3d41d0d7fb9b

Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
author Gary Kramlich <grim@reaperworld.com>
date Mon, 30 Apr 2007 00:34:04 +0000
parents 771e1bfa22c6
children 05701825aa7e
comparison
equal deleted inserted replaced
16677:30829e806dae 16678:3d41d0d7fb9b
116 } 116 }
117 117
118 static PurplePluginUiInfo prefs_info = { 118 static PurplePluginUiInfo prefs_info = {
119 get_plugin_pref_frame, 119 get_plugin_pref_frame,
120 0, /* page_num (Reserved) */ 120 0, /* page_num (Reserved) */
121 NULL /* frame (Reserved) */ 121 NULL, /* frame (Reserved) */
122
123 /* padding */
124 NULL,
125 NULL,
126 NULL,
127 NULL
122 }; 128 };
123 129
124 static PurplePluginInfo info = 130 static PurplePluginInfo info =
125 { 131 {
126 PURPLE_PLUGIN_MAGIC, 132 PURPLE_PLUGIN_MAGIC,
144 plugin_unload, /**< unload */ 150 plugin_unload, /**< unload */
145 NULL, /**< destroy */ 151 NULL, /**< destroy */
146 NULL, /**< ui_info */ 152 NULL, /**< ui_info */
147 NULL, /**< extra_info */ 153 NULL, /**< extra_info */
148 &prefs_info, /**< prefs_info */ 154 &prefs_info, /**< prefs_info */
149 NULL /**< actions */ 155 NULL, /**< actions */
156
157 /* padding */
158 NULL,
159 NULL,
160 NULL,
161 NULL
150 }; 162 };
151 163
152 static void 164 static void
153 init_plugin(PurplePlugin *plugin) 165 init_plugin(PurplePlugin *plugin)
154 { 166 {