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 /uisimulator | |
parent | fa97f161abc45bfd5db86bceb8803d2661e65447 (diff) |
missing stub broke the sim build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4415 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-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 4098c0b4c4..84621a562b 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; } |