comparison pidgin/plugins/contact_priority.c @ 16721:89bbced1589f

Add padding to structs to fix compiler warnings
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 30 Apr 2007 18:03:57 +0000
parents 4999bbc52881
children 44b4e8bd759b
comparison
equal deleted inserted replaced
16720:dc6903cc63b3 16721:89bbced1589f
162 } 162 }
163 163
164 static PidginPluginUiInfo ui_info = 164 static PidginPluginUiInfo ui_info =
165 { 165 {
166 get_config_frame, 166 get_config_frame,
167 0 /* page_num (Reserved) */ 167 0, /* page_num (Reserved) */
168 /* Padding */
169 NULL,
170 NULL,
171 NULL,
172 NULL
168 }; 173 };
169 174
170 static PurplePluginInfo info = 175 static PurplePluginInfo info =
171 { 176 {
172 PURPLE_PLUGIN_MAGIC, 177 PURPLE_PLUGIN_MAGIC,
192 NULL, /**< unload */ 197 NULL, /**< unload */
193 NULL, /**< destroy */ 198 NULL, /**< destroy */
194 &ui_info, /**< ui_info */ 199 &ui_info, /**< ui_info */
195 NULL, /**< extra_info */ 200 NULL, /**< extra_info */
196 NULL, /**< prefs_info */ 201 NULL, /**< prefs_info */
197 NULL /**< actions */ 202 NULL, /**< actions */
203
204 /* padding */
205 NULL,
206 NULL,
207 NULL,
208 NULL
198 }; 209 };
199 210
200 static void 211 static void
201 init_plugin(PurplePlugin *plugin) 212 init_plugin(PurplePlugin *plugin)
202 { 213 {