summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/playback_control.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-03-26 22:33:25 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-03-26 22:33:25 +0000
commit6f4d721d23946632d2a428884ee990e61f43434e (patch)
treec718808a35ab00d7e8b189d4e52690621dfbcbcb /apps/plugins/lib/playback_control.h
parentb76e4ec5f27086b8c3b08ef4b2c90d94d93ca83b (diff)
downloadrockbox-6f4d721d23946632d2a428884ee990e61f43434e.tar.gz
rockbox-6f4d721d23946632d2a428884ee990e61f43434e.zip
Basic plugin playback control menu by Jonathan Gordon (Patch #4874)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9269 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/playback_control.h')
-rw-r--r--apps/plugins/lib/playback_control.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/apps/plugins/lib/playback_control.h b/apps/plugins/lib/playback_control.h
new file mode 100644
index 0000000000..a259fc9194
--- /dev/null
+++ b/apps/plugins/lib/playback_control.h
@@ -0,0 +1,24 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 Jonathan Gordon
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __PLAYBACK_CONTROL_H__
20#define __PLAYBACK_CONTROL_H__
21
22bool playback_control(struct plugin_api* api);
23
24#endif /* __PLAYBACK_CONTROL_H__ */