diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2007-01-12 18:34:00 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2007-01-12 18:34:00 +0000 |
| commit | 0ea4d3197ed7e56f39c630741cb69152ac9e41de (patch) | |
| tree | bc29ccef30da139df3e928fd3b8ff3801407b58c /apps/plugin.h | |
| parent | 12ef310466937551dbedb2165769d7832b11156c (diff) | |
| download | rockbox-0ea4d3197ed7e56f39c630741cb69152ac9e41de.zip rockbox-0ea4d3197ed7e56f39c630741cb69152ac9e41de.tar.gz rockbox-0ea4d3197ed7e56f39c630741cb69152ac9e41de.tar.bz2 rockbox-0ea4d3197ed7e56f39c630741cb69152ac9e41de.tar.xz | |
Prepare core support for the iriver bootloader supporting ROM images
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11991 a1c6a512-1295-4272-9138-f99709370657
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 */ |