summaryrefslogtreecommitdiff
path: root/apps/bookmark.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.h')
-rw-r--r--apps/bookmark.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/bookmark.h b/apps/bookmark.h
new file mode 100644
index 0000000000..bff58f67a8
--- /dev/null
+++ b/apps/bookmark.h
@@ -0,0 +1,33 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2003 by Benjamin Metzler
10 *
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.
13 *
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
16 *
17 ****************************************************************************/
18
19#ifndef __BOOKMARK_H__
20#define __BOOKMARK_H__
21
22#include <stdbool.h>
23
24bool bookmark_menu(void);
25bool bookmark_autobookmark(void);
26bool bookmark_create_menu(void);
27bool bookmark_mrb_load(void);
28bool bookmark_autoload(char* file);
29bool bookmark_load(char* file, bool autoload);
30void bookmark_play(char* resume_file, int index, int offset, int seed);
31
32#endif /* __BOOKMARK_H__ */
33