diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-16 12:59:19 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-16 12:59:19 +0000 |
| commit | 06a2ffd962fe4971ce9b2b1845f1c62d1927fadd (patch) | |
| tree | 2a5ddcb1cb7060efd33464071ccba2ebe25aa402 /apps/plugin.c | |
| parent | 8e7e35c510e79388484798bb5267c9596abcae95 (diff) | |
| download | rockbox-06a2ffd962fe4971ce9b2b1845f1c62d1927fadd.zip rockbox-06a2ffd962fe4971ce9b2b1845f1c62d1927fadd.tar.gz rockbox-06a2ffd962fe4971ce9b2b1845f1c62d1927fadd.tar.bz2 rockbox-06a2ffd962fe4971ce9b2b1845f1c62d1927fadd.tar.xz | |
Added settings_parseline() and strcmp() to the plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4889 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 70260db..a53618d 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -251,6 +251,8 @@ static struct plugin_api rockbox_api = { lcd_put_cursor, lcd_remove_cursor, #endif + settings_parseline, + strcmp, }; int plugin_load(char* plugin, void* parameter) |