1
0
Fork 0
forked from len0rd/rockbox

The plugin API now supports ctype macros like tolower() and friends

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4872 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-07-13 14:01:41 +00:00
parent ae9b319ec5
commit 0c458c043a
4 changed files with 17 additions and 17 deletions

View file

@ -21,6 +21,7 @@
#include <stdio.h>
#include <atoi.h>
#include <timefuncs.h>
#include <ctype.h>
#include "debug.h"
#include "button.h"
#include "lcd.h"
@ -147,6 +148,9 @@ static struct plugin_api rockbox_api = {
strlen,
memset,
memcpy,
#ifndef SIMULATOR
_ctype_,
#endif
/* sound */
#ifndef SIMULATOR
@ -209,6 +213,7 @@ static struct plugin_api rockbox_api = {
mpeg_next_track,
playlist_amount,
mpeg_status,
mpeg_has_changed_track,
#ifdef HAVE_LCD_BITMAP
font_get,
#endif
@ -230,6 +235,7 @@ static struct plugin_api rockbox_api = {
#endif
battery_level,
set_time,
reset_poweroff_timer,
backlight_on,
backlight_off,
@ -237,9 +243,6 @@ static struct plugin_api rockbox_api = {
#ifdef HAVE_LCD_CHARCELLS
lcd_icon,
#endif
reset_poweroff_timer,
mpeg_has_changed_track,
};
int plugin_load(char* plugin, void* parameter)