diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 16781de..b2d894f 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -602,11 +602,18 @@ struct plugin_api { int (*sound_default)(int setting); void (*pcm_record_more)(void *start, size_t size); #endif - + struct thread_entry*(*create_thread_on_core)( unsigned int core, void (*function)(void), void* stack, int stack_size, const char *name IF_PRIO(, int priority)); + +#ifdef IRIVER_H100_SERIES + /* Routines for the iriver_flash -plugin. */ + bool (*detect_original_firmware)(void); + bool (*detect_flashed_ramimage)(void); + bool (*detect_flashed_romimage)(void); +#endif }; /* plugin header */ |