preliminary support for ovr edits within mmenu
[pandora-libraries.git] / minimenu / mmapps.h
1
2 #ifndef h_mmapps_h
3 #define h_mmapps_h
4
5 typedef struct _mm_app_t {
6   char *dispname;  // name to display (already beft-match localized)
7   char *exec;      // complete exec-line (ie: bin and all args)
8   char *iconpath;  // path to icon
9   void *iconcache; // userdata: probably points to an icon cache
10   // structure
11   struct _mm_app_t *next; // next in linked list
12 } mm_app_t;
13
14 // fullscan implies full searchpath walk and return; no merging new apps with existing list, etc
15 mm_app_t *apps_fullscan ( char *searchpath );
16
17 mm_app_t *apps_fetch_from_dotdesktop ( char *path );
18
19 #endif