diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-02-03 10:06:02 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-03 10:06:02 +0000 |
| commit | 7030e29abb02a741ab46e341269736ff8d7f3ff6 (patch) | |
| tree | 1b23e3ca9adcfae1b4d10c7aae0e8f81287168cd /apps/plugin.h | |
| parent | 8ef88a1815cab2cee4cd31688c01f749ac88afd2 (diff) | |
| download | rockbox-7030e29abb02a741ab46e341269736ff8d7f3ff6.zip rockbox-7030e29abb02a741ab46e341269736ff8d7f3ff6.tar.gz rockbox-7030e29abb02a741ab46e341269736ff8d7f3ff6.tar.bz2 rockbox-7030e29abb02a741ab46e341269736ff8d7f3ff6.tar.xz | |
fix a mismatch between the .h and .c for non-MAS players, and fixed some
warnings too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5760 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 9d3ef8e..3e72248 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -247,7 +247,7 @@ struct plugin_api { #endif /* MAS communication */ -#ifndef SIMULATOR +#if !defined(SIMULATOR) && (CONFIG_HWCODEC != MASNONE) int (*mas_readmem)(int bank, int addr, unsigned long* dest, int len); int (*mas_writemem)(int bank, int addr, const unsigned long* src, int len); int (*mas_readreg)(int reg); |