summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 16781de0c1..b2d894f0ee 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -602,11 +602,18 @@ struct plugin_api {
602 int (*sound_default)(int setting); 602 int (*sound_default)(int setting);
603 void (*pcm_record_more)(void *start, size_t size); 603 void (*pcm_record_more)(void *start, size_t size);
604#endif 604#endif
605 605
606 struct thread_entry*(*create_thread_on_core)( 606 struct thread_entry*(*create_thread_on_core)(
607 unsigned int core, void (*function)(void), 607 unsigned int core, void (*function)(void),
608 void* stack, int stack_size, 608 void* stack, int stack_size,
609 const char *name IF_PRIO(, int priority)); 609 const char *name IF_PRIO(, int priority));
610
611#ifdef IRIVER_H100_SERIES
612 /* Routines for the iriver_flash -plugin. */
613 bool (*detect_original_firmware)(void);
614 bool (*detect_flashed_ramimage)(void);
615 bool (*detect_flashed_romimage)(void);
616#endif
610}; 617};
611 618
612/* plugin header */ 619/* plugin header */