source: bootcd/isolinux/syslinux-6.03/gpxe/src/include/usr/imgmgmt.h

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 516 bytes
Line 
1#ifndef _USR_IMGMGMT_H
2#define _USR_IMGMGMT_H
3
4/** @file
5 *
6 * Image management
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER );
11
12struct image;
13
14extern int imgfetch ( struct image *image, const char *uri_string,
15                      int ( * image_register ) ( struct image *image ) );
16extern int imgload ( struct image *image );
17extern int imgexec ( struct image *image );
18extern struct image * imgautoselect ( void );
19extern void imgstat ( struct image *image );
20extern void imgfree ( struct image *image );
21
22#endif /* _USR_IMGMGMT_H */
Note: See TracBrowser for help on using the repository browser.