diff options
Diffstat (limited to 'contrib/syslinux-4.02/gpxe/src/include/usr/imgmgmt.h')
-rw-r--r-- | contrib/syslinux-4.02/gpxe/src/include/usr/imgmgmt.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/gpxe/src/include/usr/imgmgmt.h b/contrib/syslinux-4.02/gpxe/src/include/usr/imgmgmt.h new file mode 100644 index 0000000..0c8c8cf --- /dev/null +++ b/contrib/syslinux-4.02/gpxe/src/include/usr/imgmgmt.h @@ -0,0 +1,22 @@ +#ifndef _USR_IMGMGMT_H +#define _USR_IMGMGMT_H + +/** @file + * + * Image management + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +struct image; + +extern int imgfetch ( struct image *image, const char *uri_string, + int ( * image_register ) ( struct image *image ) ); +extern int imgload ( struct image *image ); +extern int imgexec ( struct image *image ); +extern struct image * imgautoselect ( void ); +extern void imgstat ( struct image *image ); +extern void imgfree ( struct image *image ); + +#endif /* _USR_IMGMGMT_H */ |