From 9e173d18ef82bcf01630588d230b27c6742f9b43 Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Mon, 21 Mar 2005 11:54:59 +0000 Subject: Temporary fix for the broken sim build.. till someone implements sound on them... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6221 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.c | 4 ++-- apps/plugin.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'apps') diff --git a/apps/plugin.c b/apps/plugin.c index 84d030e1de..b4239bb8d9 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -44,7 +44,7 @@ #include "mp3data.h" #include "powermgmt.h" #include "system.h" -#if (CONFIG_HWCODEC == MASNONE) +#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR) #include "pcm_playback.h" #endif @@ -271,7 +271,7 @@ static const struct plugin_api rockbox_api = { #if CONFIG_KEYPAD == IRIVER_H100_PAD button_hold, #endif -#if (CONFIG_HWCODEC == MASNONE) +#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR) pcm_play_data, pcm_play_stop, pcm_is_playing, diff --git a/apps/plugin.h b/apps/plugin.h index 88b9953913..3755018d6d 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -317,7 +317,7 @@ struct plugin_api { #if CONFIG_KEYPAD == IRIVER_H100_PAD bool (*button_hold)(void); #endif -#if (CONFIG_HWCODEC == MASNONE) +#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR) void (*pcm_play_data)(const unsigned char *start, int size, void (*get_more)(unsigned char** start, long*size)); void (*pcm_play_stop)(void); -- cgit v1.2.3