You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

imgmgmt.h 432B

12345678910111213141516171819
  1. #ifndef _USR_IMGMGMT_H
  2. #define _USR_IMGMGMT_H
  3. /** @file
  4. *
  5. * Image management
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER );
  9. #include <ipxe/image.h>
  10. extern int imgdownload ( struct uri *uri, struct image **image );
  11. extern int imgdownload_string ( const char *uri_string, struct image **image );
  12. extern int imgacquire ( const char *name, struct image **image );
  13. extern void imgstat ( struct image *image );
  14. #endif /* _USR_IMGMGMT_H */