diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-19 22:41:36 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-19 22:41:36 +0000 |
| commit | 78f06b9a2c6ca2d4eecc1d0e0b9615cae4acc7bf (patch) | |
| tree | 879b795312cce3a40f7ff191394939278025b39e | |
| parent | fa97f161abc45bfd5db86bceb8803d2661e65447 (diff) | |
| download | rockbox-78f06b9a2c6ca2d4eecc1d0e0b9615cae4acc7bf.zip rockbox-78f06b9a2c6ca2d4eecc1d0e0b9615cae4acc7bf.tar.gz rockbox-78f06b9a2c6ca2d4eecc1d0e0b9615cae4acc7bf.tar.bz2 rockbox-78f06b9a2c6ca2d4eecc1d0e0b9615cae4acc7bf.tar.xz | |
missing stub broke the sim build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4415 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/common/stubs.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 4098c0b..84621a5 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -231,16 +231,24 @@ int talk_buffer_steal(void) return 0; } -int talk_id(int id, bool block) +int talk_id(int id, bool enqueue) { (void)id; - (void)block; + (void)enqueue; return 0; } -int talk_file(char* filename, bool block) +int talk_file(char* filename, bool enqueue) { (void)filename; - (void)block; + (void)enqueue; + return 0; +} + +int talk_value(int n, int unit, bool enqueue) +{ + (void)n; + (void)unit; + (void)enqueue; return 0; } |