Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / include / usr / imgmgmt.h
1 #ifndef _USR_IMGMGMT_H
2 #define _USR_IMGMGMT_H
3
4 /** @file
5  *
6  * Image management
7  *
8  */
9
10 FILE_LICENCE ( GPL2_OR_LATER );
11
12 #include <ipxe/image.h>
13
14 extern int imgdownload ( struct uri *uri, unsigned long timeout,
15                          struct image **image );
16 extern int imgdownload_string ( const char *uri_string, unsigned long timeout,
17                                 struct image **image );
18 extern int imgacquire ( const char *name, unsigned long timeout,
19                         struct image **image );
20 extern void imgstat ( struct image *image );
21
22 #endif /* _USR_IMGMGMT_H */