diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-10-26 11:44:21 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-10-26 11:44:21 +0000 |
| commit | 9e2807fc666a58aa90c0ff627efff3a97419dda3 (patch) | |
| tree | faa94666266375e1ed3ce47624df9b36fa45e6ff /apps/plugin.h | |
| parent | 34535494a7402529a465c36245ecf12f7369d91f (diff) | |
| download | rockbox-9e2807fc666a58aa90c0ff627efff3a97419dda3.zip rockbox-9e2807fc666a58aa90c0ff627efff3a97419dda3.tar.gz rockbox-9e2807fc666a58aa90c0ff627efff3a97419dda3.tar.bz2 rockbox-9e2807fc666a58aa90c0ff627efff3a97419dda3.tar.xz | |
Add a simple plugin (apps/settings_dumper.rock) which dumps the valid values of all the config settings to /settings_dumper.txt. If you notice any settings its not dumping please let me know.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18882 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 9544b38..1b452bd 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -89,6 +89,7 @@ void* plugin_get_buffer(size_t *buffer_size); #include "tagcache.h" #include "viewport.h" #include "ata_idle_notify.h" +#include "settings_list.h" #ifdef HAVE_ALBUMART #include "albumart.h" @@ -774,6 +775,7 @@ struct plugin_api { const char *appsversion; /* new stuff at the end, sort into place next time the API gets incompatible */ + const struct settings_list* (*get_settings_list)(int*count); }; |