Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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