1
0
Fork 0
forked from len0rd/rockbox

Fixed red H1x0 simulator build.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6909 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-06-29 02:01:24 +00:00
parent ce19ce00b7
commit 5eb0fff07b
2 changed files with 4 additions and 2 deletions

View file

@ -138,7 +138,9 @@ static const struct plugin_api rockbox_api = {
lcd_remote_puts, lcd_remote_puts,
lcd_remote_puts_scroll, lcd_remote_puts_scroll,
lcd_remote_stop_scroll, lcd_remote_stop_scroll,
#ifndef SIMULATOR
lcd_remote_roll, lcd_remote_roll,
#endif
lcd_remote_set_drawmode, lcd_remote_set_drawmode,
lcd_remote_get_drawmode, lcd_remote_get_drawmode,
lcd_remote_setfont, lcd_remote_setfont,

View file

@ -194,9 +194,9 @@ struct plugin_api {
void (*lcd_remote_puts)(int x, int y, const unsigned char *string); void (*lcd_remote_puts)(int x, int y, const unsigned char *string);
void (*lcd_remote_lcd_puts_scroll)(int x, int y, const unsigned char* string); void (*lcd_remote_lcd_puts_scroll)(int x, int y, const unsigned char* string);
void (*lcd_remote_lcd_stop_scroll)(void); void (*lcd_remote_lcd_stop_scroll)(void);
#ifndef SIMULATOR
void (*lcd_remote_roll)(int pixels); void (*lcd_remote_roll)(int pixels);
#endif
void (*lcd_remote_set_drawmode)(int mode); void (*lcd_remote_set_drawmode)(int mode);
int (*lcd_remote_get_drawmode)(void); int (*lcd_remote_get_drawmode)(void);
void (*lcd_remote_setfont)(int font); void (*lcd_remote_setfont)(int font);