[sundance] Add reset completion check
[gpxe.git] / src / include / usr / imgmgmt.h
blob438af003928c71866ecc6b60d8b341c8330bae59
1 #ifndef _USR_IMGMGMT_H
2 #define _USR_IMGMGMT_H
4 /** @file
6 * Image management
8 */
10 struct image;
12 extern int imgfetch ( struct image *image, const char *uri_string,
13 int ( * image_register ) ( struct image *image ) );
14 extern int imgload ( struct image *image );
15 extern int imgexec ( struct image *image );
16 extern struct image * imgautoselect ( void );
17 extern void imgstat ( struct image *image );
18 extern void imgfree ( struct image *image );
20 #endif /* _USR_IMGMGMT_H */