[contrib] Allow Network Protocol header to display in rom-o-matic
[gpxe.git] / src / include / usr / imgmgmt.h
blob0c8c8cf72283a0a9efedacae1c24e84030f68101
1 #ifndef _USR_IMGMGMT_H
2 #define _USR_IMGMGMT_H
4 /** @file
6 * Image management
8 */
10 FILE_LICENCE ( GPL2_OR_LATER );
12 struct image;
14 extern int imgfetch ( struct image *image, const char *uri_string,
15 int ( * image_register ) ( struct image *image ) );
16 extern int imgload ( struct image *image );
17 extern int imgexec ( struct image *image );
18 extern struct image * imgautoselect ( void );
19 extern void imgstat ( struct image *image );
20 extern void imgfree ( struct image *image );
22 #endif /* _USR_IMGMGMT_H */