summaryrefslogtreecommitdiff
path: root/uisimulator/win32/mpeg.c
diff options
context:
space:
mode:
authorFelix Arends <edx@rockbox.org>2002-06-12 15:39:39 +0000
committerFelix Arends <edx@rockbox.org>2002-06-12 15:39:39 +0000
commit0053ec0c725206a5fca17bfca8f4ab607b90096a (patch)
tree046dda9a3da8dfd87f8bc68ce7b5eef3a14de3c5 /uisimulator/win32/mpeg.c
parentd0b23126f1da12c03732ade3e6da780c32024349 (diff)
downloadrockbox-0053ec0c725206a5fca17bfca8f4ab607b90096a.tar.gz
rockbox-0053ec0c725206a5fca17bfca8f4ab607b90096a.zip
Threading is working on uisw32 as well now, code is up-to-date, makefile is up-to-date
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@981 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/mpeg.c')
-rw-r--r--uisimulator/win32/mpeg.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/uisimulator/win32/mpeg.c b/uisimulator/win32/mpeg.c
index 7f7b76aacb..1ff9bce3ff 100644
--- a/uisimulator/win32/mpeg.c
+++ b/uisimulator/win32/mpeg.c
@@ -20,6 +20,8 @@
20/* This file is for emulating some of the mpeg controlling functions of 20/* This file is for emulating some of the mpeg controlling functions of
21 the target */ 21 the target */
22 22
23#include "debug.h"
24
23void mpeg_volume(void) 25void mpeg_volume(void)
24{ 26{
25} 27}
@@ -35,3 +37,12 @@ void mpeg_treble(void)
35void mpeg_stop(void) 37void mpeg_stop(void)
36{ 38{
37} 39}
40
41#ifndef MPEGPLAY
42void mpeg_play(char *tune)
43{
44 DEBUGF("We instruct the MPEG thread to play %s for us\n",
45 tune);
46}
47
48#endif