summaryrefslogtreecommitdiff
path: root/apps/menu.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-14 10:39:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-14 10:39:11 +0000
commit91f743f17ef91fcce7e6498fc8bf888ac010bb3c (patch)
tree8e607d61ae25f472516d9eb59e2ec7e2601c7cef /apps/menu.h
parent698ebc8412fa4cefff01c8f68d2a24aea23bbb78 (diff)
downloadrockbox-91f743f17ef91fcce7e6498fc8bf888ac010bb3c.tar.gz
rockbox-91f743f17ef91fcce7e6498fc8bf888ac010bb3c.zip
killed off a warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@998 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.h')
-rw-r--r--apps/menu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/menu.h b/apps/menu.h
index accfbda267..aea81f5e4e 100644
--- a/apps/menu.h
+++ b/apps/menu.h
@@ -20,6 +20,8 @@
20#ifndef __MENU_H__ 20#ifndef __MENU_H__
21#define __MENU_H__ 21#define __MENU_H__
22 22
23#include <stdbool.h>
24
23struct menu_items { 25struct menu_items {
24 int id; 26 int id;
25 char *desc; 27 char *desc;
@@ -30,4 +32,6 @@ int menu_init(struct menu_items* items, int count);
30void menu_exit(int menu); 32void menu_exit(int menu);
31void menu_run(int menu); 33void menu_run(int menu);
32 34
35void put_cursorxy(int x, int y, bool on);
36
33#endif /* End __MENU_H__ */ 37#endif /* End __MENU_H__ */