Quick hack to get image booting working again

This commit is contained in:
Michael Brown
2007-06-28 17:55:29 +01:00
parent 7d6e4aab6f
commit 4b08f4cf0f
5 changed files with 69 additions and 68 deletions

View File

@@ -113,6 +113,7 @@ extern struct list_head images;
#define for_each_image( image ) \
list_for_each_entry ( (image), &images, list )
extern struct image * alloc_image ( void );
extern int register_image ( struct image *image );
extern void unregister_image ( struct image *image );
extern void promote_image ( struct image *image );

View File

@@ -9,8 +9,7 @@
struct image;
extern int imgfetch ( const char *filename, const char *name,
struct image **new_image );
extern int imgfetch ( struct image *image, const char *filename, int load );
extern int imgload ( struct image *image );
extern int imgexec ( struct image *image );
extern struct image * imgautoselect ( void );