r585: AppInfo file may contain a <Summary> element - the text inside will be
[rox-filer.git] / ROX-Filer / src / appinfo.h
blobf200802618f34accc46905d6c66c58009d11bda2
1 /*
2 * $Id$
3 */
5 #ifndef _APPINFO_H
6 #define _APPINFO_H
8 #include "fscache.h"
10 /* Name of the XML file where the info is stored */
11 #define APPINFO_FILENAME "AppInfo.xml"
13 typedef struct _AppInfo AppInfo;
15 /* External interface */
16 void appinfo_init(void);
17 AppInfo *appinfo_get(guchar *app_dir, DirItem *item);
18 void appinfo_unref(AppInfo *info);
19 struct _xmlNode *appinfo_get_section(AppInfo *ai, guchar *name);
21 #endif /* _APPINFO_H */