summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-10-06 12:52:00 +0000
committerThomas Martitz <kugel@rockbox.org>2010-10-06 12:52:00 +0000
commitc2b573941957793dfa7fd0c5fea46858a7ff43be (patch)
treef66b32749ddbde7f627ac888796610b8217ddfcd
parentd9d0b4dd20c440b111930bccd87d29999299c1b1 (diff)
downloadrockbox-c2b573941957793dfa7fd0c5fea46858a7ff43be.tar.gz
rockbox-c2b573941957793dfa7fd0c5fea46858a7ff43be.zip
Fix targets with remote display, forgot to add the new functions to their header.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28215 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/lcd-remote.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index 5b96863536..93b2968033 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -128,6 +128,8 @@ extern void lcd_remote_puts_offset(int x, int y, const unsigned char *str,
128 int offset); 128 int offset);
129extern void lcd_remote_puts_style_offset(int x, int y, const unsigned char *str, 129extern void lcd_remote_puts_style_offset(int x, int y, const unsigned char *str,
130 int style, int offset); 130 int style, int offset);
131extern void lcd_remote_puts_style_xyoffset(int x, int y, const unsigned char *str,
132 int style, int x_offset, int y_offset);
131extern void lcd_remote_putc(int x, int y, unsigned short ch); 133extern void lcd_remote_putc(int x, int y, unsigned short ch);
132extern void lcd_remote_stop_scroll(void); 134extern void lcd_remote_stop_scroll(void);
133extern void lcd_remote_scroll_speed(int speed); 135extern void lcd_remote_scroll_speed(int speed);
@@ -140,6 +142,10 @@ extern void lcd_remote_puts_scroll_offset(int x, int y,
140extern void lcd_remote_puts_scroll_style_offset(int x, int y, 142extern void lcd_remote_puts_scroll_style_offset(int x, int y,
141 const unsigned char *string, 143 const unsigned char *string,
142 int style, int offset); 144 int style, int offset);
145extern void lcd_remote_puts_scroll_style_xyoffset(int x, int y,
146 const unsigned char *string,
147 int style, int x_offset,
148 int y_offset);
143 149
144extern void lcd_remote_update(void); 150extern void lcd_remote_update(void);
145extern void lcd_remote_update_rect(int x, int y, int width, int height); 151extern void lcd_remote_update_rect(int x, int y, int width, int height);