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 */