summaryrefslogtreecommitdiffstats
path: root/uisimulator/win32
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-05-23 16:23:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-05-23 16:23:25 +0000
commitac31e6af875eed8dce724604cff94da107a4700b (patch)
tree9f2e3cc33933ae69753314ffea509741b35ed45b /uisimulator/win32
parented42300bff0d7e5d6f6af3a41fd5d0249830bdfa (diff)
downloadrockbox-ac31e6af875eed8dce724604cff94da107a4700b.tar.gz
rockbox-ac31e6af875eed8dce724604cff94da107a4700b.zip
Remote LCD support added to the x11 simulator, take 1. The win32 simulator
still builds, but shows no remote LCD yet. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6510 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32')
-rw-r--r--uisimulator/win32/lcd-win32.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/uisimulator/win32/lcd-win32.c b/uisimulator/win32/lcd-win32.c
index 8b01803978..ef85214e8f 100644
--- a/uisimulator/win32/lcd-win32.c
+++ b/uisimulator/win32/lcd-win32.c
@@ -48,11 +48,6 @@ extern unsigned char hardware_buffer_lcd[11][2];
static unsigned char lcd_buffer_copy[11][2];
#endif
-void lcd_set_invert_display(bool invert)
-{
- (void)invert;
-}
-
/* lcd_update()
update lcd */
void lcd_update()
@@ -128,6 +123,20 @@ void lcd_update_rect(int x_start, int y_start,
InvalidateRect (hGUIWnd, &r, FALSE);
}
+void lcd_remote_update(void)
+{
+
+}
+
+void lcd_remote_update_rect(int x_start, int y_start,
+ int width, int height)
+{
+ (void)x_start;
+ (void)y_start;
+ (void)width;
+ (void)height;
+}
+
/* lcd_backlight()
set backlight state of lcd */
void lcd_backlight (bool on)