comparison src/typedefs.h @ 1277:93df70312ccd

Reorder fields a bit and make flags field unsigned.
author zas_
date Tue, 03 Feb 2009 13:50:10 +0000
parents e0e12512cde2
children 6248faa9e829
comparison
equal deleted inserted replaced
1276:4177057ca11b 1277:93df70312ccd
200 typedef struct _ExifData ExifData; 200 typedef struct _ExifData ExifData;
201 201
202 typedef struct _EditorDescription EditorDescription; 202 typedef struct _EditorDescription EditorDescription;
203 203
204 struct _EditorDescription { 204 struct _EditorDescription {
205 gchar *key; /* desktop file name, not including path, including extension */ 205 gchar *key; /* desktop file name, not including path, including extension */
206 gchar *name; /* localized name presented to user */ 206 gchar *name; /* Name, localized name presented to user */
207 gchar *exec; 207 gchar *icon; /* Icon */
208 gchar *menu_path; 208 gchar *exec; /* Exec */
209 gchar *menu_path;
209 gchar *hotkey; 210 gchar *hotkey;
210 GList *ext_list; 211 GList *ext_list;
211 gchar *icon;
212 gchar *file; 212 gchar *file;
213 gint flags; 213 guint flags;
214 gboolean hidden; 214 gboolean hidden;
215 }; 215 };
216 216
217 217
218 struct _ImageLoader; 218 struct _ImageLoader;