1
0
Fork 0
forked from len0rd/rockbox

Plugin parameters should be const.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Steve Bavin 2008-05-13 09:57:56 +00:00
parent a94e40d515
commit 6526577818
159 changed files with 363 additions and 371 deletions

View file

@ -20,7 +20,7 @@
PLUGIN_HEADER
static struct plugin_api* rb;
static const struct plugin_api* rb;
static char *audiobuf;
static ssize_t audiobuflen;
@ -36,7 +36,7 @@ static void xingupdate(int percent)
rb->lcd_update();
}
static int insert_data_in_file(char *fname, int fpos, char *buf, int num_bytes)
static int insert_data_in_file(const char *fname, int fpos, char *buf, int num_bytes)
{
int readlen;
int rc;
@ -126,7 +126,7 @@ static const unsigned char empty_id3_header[] =
0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
};
static bool vbr_fix(char *selected_file)
static bool vbr_fix(const char *selected_file)
{
struct mp3entry entry;
int fd;
@ -261,7 +261,7 @@ static bool vbr_fix(char *selected_file)
return false;
}
enum plugin_status plugin_start(struct plugin_api* api, void *parameter)
enum plugin_status plugin_start(const struct plugin_api* api, const void *parameter)
{
rb = api;