r898: Applied Bernard Jungen's latest patch:
[rox-filer.git] / ROX-Filer / src / appinfo.h
blobaf4c52d9f7408abcc6729c3d9b61a8287ec08b63
1 /*
2 * $Id$
3 */
5 #ifndef _APPINFO_H
6 #define _APPINFO_H
8 #include <parser.h>
9 #include "fscache.h"
11 /* Name of the XML file where the info is stored */
12 #define APPINFO_FILENAME "AppInfo.xml"
14 typedef struct _AppInfo AppInfo;
16 /* External interface */
17 void appinfo_init(void);
18 AppInfo *appinfo_get(guchar *app_dir, DirItem *item);
19 void appinfo_unref(AppInfo *info);
20 xmlNode *appinfo_get_section(AppInfo *ai, guchar *name);
22 #endif /* _APPINFO_H */