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/bookmark.h | |
parent | 6d0da414bfea35b4370ad820d28d4565521d7b12 (diff) |
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/bookmark.h')
-rw-r--r-- | apps/bookmark.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/bookmark.h b/apps/bookmark.h index bff58f67a8..2f8b58af7e 100644 --- a/apps/bookmark.h +++ b/apps/bookmark.h @@ -25,8 +25,8 @@ bool bookmark_menu(void); bool bookmark_autobookmark(void); bool bookmark_create_menu(void); bool bookmark_mrb_load(void); -bool bookmark_autoload(char* file); -bool bookmark_load(char* file, bool autoload); +bool bookmark_autoload(const char* file); +bool bookmark_load(const char* file, bool autoload); void bookmark_play(char* resume_file, int index, int offset, int seed); #endif /* __BOOKMARK_H__ */ |