diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-08-18 01:09:31 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-08-18 01:09:31 +0000 |
| commit | 8fb336148fb34474c67fbc6e0354daa4512a22fb (patch) | |
| tree | 5910d0a54bf8424b424939a263abef0f570591f7 /apps/menu.h | |
| parent | 6d0da414bfea35b4370ad820d28d4565521d7b12 (diff) | |
| download | rockbox-8fb336148fb34474c67fbc6e0354daa4512a22fb.zip rockbox-8fb336148fb34474c67fbc6e0354daa4512a22fb.tar.gz rockbox-8fb336148fb34474c67fbc6e0354daa4512a22fb.tar.bz2 rockbox-8fb336148fb34474c67fbc6e0354daa4512a22fb.tar.xz | |
Const policed pointer arguments to functions, part 3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4999 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.h')
| -rw-r--r-- | apps/menu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menu.h b/apps/menu.h index d097f73..12d934f 100644 --- a/apps/menu.h +++ b/apps/menu.h @@ -28,7 +28,7 @@ struct menu_item { }; int menu_init(const struct menu_item* mitems, int count, int (*callback)(int, int), - char *button1, char *button2, char *button3); + const char *button1, const char *button2, const char *button3); void menu_exit(int menu); void put_cursorxy(int x, int y, bool on); |