summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/common/stubs.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index 23a6728db4..4098c0b4c4 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -225,3 +225,22 @@ void button_set_flip(bool yesno)
225{ 225{
226 (void)yesno; 226 (void)yesno;
227} 227}
228
229int talk_buffer_steal(void)
230{
231 return 0;
232}
233
234int talk_id(int id, bool block)
235{
236 (void)id;
237 (void)block;
238 return 0;
239}
240
241int talk_file(char* filename, bool block)
242{
243 (void)filename;
244 (void)block;
245 return 0;
246}