summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/menu.h4
-rw-r--r--apps/tree.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/apps/menu.h b/apps/menu.h
index accfbda..aea81f5 100644
--- a/apps/menu.h
+++ b/apps/menu.h
@@ -20,6 +20,8 @@
#ifndef __MENU_H__
#define __MENU_H__
+#include <stdbool.h>
+
struct menu_items {
int id;
char *desc;
@@ -30,4 +32,6 @@ int menu_init(struct menu_items* items, int count);
void menu_exit(int menu);
void menu_run(int menu);
+void put_cursorxy(int x, int y, bool on);
+
#endif /* End __MENU_H__ */
diff --git a/apps/tree.c b/apps/tree.c
index 88bdadd..b0c226c 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -33,6 +33,7 @@
#include "sprintf.h"
#include "mpeg.h"
#include "playlist.h"
+#include "menu.h"
#ifdef HAVE_LCD_BITMAP
#include "icons.h"