Directory browser is now available in config panel, and works! Will only run files...
[pandora-libraries.git] / minimenu / mmenu.h
index 98e84d4..4a5ea36 100644 (file)
@@ -9,7 +9,7 @@ extern char *g_skinpath;
 
 // base searchpath to locate the conf
 #define MMENU_CONF "mmenu.conf"
-#define MMENU_CONF_SEARCHPATH "/etc/pandora/conf:./minimenu"
+#define MMENU_CONF_SEARCHPATH "/media/*/pandora/mmenu:/media/*/pandora/appdata/mmenu:/etc/pandora/conf:./minimenu"
 
 typedef enum {
   pndn_debug = 0,
@@ -19,9 +19,13 @@ typedef enum {
   pndn_none
 } pndnotify_loglevels_e;
 
-void emit_and_quit ( char *s );
+void emit_and_quit ( char *s );      // normal case; quit and run an app
+void emit_and_run ( char *buffer );  // odd case; run an app and stay alive
+void exec_raw_binary ( char *fullpath ); // just fork/exec something, without exit
 
 void applications_free ( void );
 void applications_scan ( void );
 
+void setup_notifications ( void );
+
 #endif