commit | 91f743f17ef91fcce7e6498fc8bf888ac010bb3c | [log] [tgz] |
---|---|---|
author | Daniel Stenberg <daniel@haxx.se> | Fri Jun 14 10:39:11 2002 +0000 |
committer | Daniel Stenberg <daniel@haxx.se> | Fri Jun 14 10:39:11 2002 +0000 |
tree | 8e607d61ae25f472516d9eb59e2ec7e2601c7cef | |
parent | 698ebc8412fa4cefff01c8f68d2a24aea23bbb78 [diff] [blame] |
killed off a warning git-svn-id: svn://svn.rockbox.org/rockbox/trunk@998 a1c6a512-1295-4272-9138-f99709370657
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 @@ void menu_exit(int menu); void menu_run(int menu); +void put_cursorxy(int x, int y, bool on); + #endif /* End __MENU_H__ */