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:
parent
a94e40d515
commit
6526577818
159 changed files with 363 additions and 371 deletions
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
PLUGIN_HEADER
|
||||
|
||||
static struct plugin_api* rb;
|
||||
static const struct plugin_api* rb;
|
||||
|
||||
static bool leap_year;
|
||||
static int days_in_month[2][13] = {
|
||||
|
|
@ -659,7 +659,7 @@ static void prev_day(struct shown *shown, int step)
|
|||
draw_calendar(shown);
|
||||
}
|
||||
|
||||
enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||
enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
|
||||
{
|
||||
struct today today;
|
||||
struct shown shown;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue