summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-09-03 08:29:03 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-09-03 08:29:03 +0000
commit644e4ce792817be267373b7713c07fe10ea76278 (patch)
tree53d24333a57833ee31097fbd7364818f4c01cbe6
parent10452d285b05ed02810bd227e3bbb799d7eea218 (diff)
downloadrockbox-644e4ce792817be267373b7713c07fe10ea76278.zip
rockbox-644e4ce792817be267373b7713c07fe10ea76278.tar.gz
rockbox-644e4ce792817be267373b7713c07fe10ea76278.tar.bz2
rockbox-644e4ce792817be267373b7713c07fe10ea76278.tar.xz
Added lcd_define_pattern()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2145 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/common/stubs.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index 18e7f8c..2781b7e 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -104,3 +104,10 @@ Menu simulate_usb(void)
while (button_get(true) & BUTTON_REL);
return MENU_OK;
}
+
+void lcd_define_pattern (int which,char *pattern,int length)
+{
+ (void)which;
+ (void)pattern;
+ (void)length;
+}