diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2008-05-13 09:57:56 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2008-05-13 09:57:56 +0000 |
| commit | 652657781805d9cc10d744a49fb23eb17019fbbf (patch) | |
| tree | 2d1a6ae597a17531f726b57fd9f8cbaa2a46a07f /apps/plugins/starfield.c | |
| parent | a94e40d5153ab698fa8a1b6b57d91fcb6acc905e (diff) | |
| download | rockbox-652657781805d9cc10d744a49fb23eb17019fbbf.zip rockbox-652657781805d9cc10d744a49fb23eb17019fbbf.tar.gz rockbox-652657781805d9cc10d744a49fb23eb17019fbbf.tar.bz2 rockbox-652657781805d9cc10d744a49fb23eb17019fbbf.tar.xz | |
Plugin parameters should be const.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/starfield.c')
| -rw-r--r-- | apps/plugins/starfield.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c index 754af24..130e077 100644 --- a/apps/plugins/starfield.c +++ b/apps/plugins/starfield.c @@ -24,7 +24,7 @@ PLUGIN_HEADER /******************************* Globals ***********************************/ -static struct plugin_api* rb; /* global api struct pointer */ +static const struct plugin_api* rb; /* global api struct pointer */ /* Key assignement */ #if (CONFIG_KEYPAD == IPOD_4G_PAD) || \ @@ -169,7 +169,7 @@ static struct plugin_api* rb; /* global api struct pointer */ #define MSG_DISP_TIME 30 -static struct plugin_api* rb; /* global api struct pointer */ +static const struct plugin_api* rb; /* global api struct pointer */ /* * Each star's stuffs @@ -432,7 +432,7 @@ int plugin_main(void) /*************************** Plugin entry point ****************************/ -enum plugin_status plugin_start(struct plugin_api* api, void* parameter) +enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter) { int ret; |