when changing settings from the Talk and Voice window also update the main widgets...
[Rockbox.git] / apps / bookmark.h
blob81b03285ba2519aa32979012ed31e8c8d0ad1d42
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2003 by Benjamin Metzler
11 * All files in this archive are subject to the GNU General Public License.
12 * See the file COPYING in the source tree root for full license agreement.
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
17 ****************************************************************************/
19 #ifndef __BOOKMARK_H__
20 #define __BOOKMARK_H__
22 #include <stdbool.h>
24 bool bookmark_load_menu(void);
25 bool bookmark_autobookmark(void);
26 bool bookmark_create_menu(void);
27 bool bookmark_mrb_load(void);
28 bool bookmark_autoload(const char* file);
29 bool bookmark_load(const char* file, bool autoload);
30 bool bookmark_exist(void);
32 #endif /* __BOOKMARK_H__ */