iPXE
downloader.h
Go to the documentation of this file.
1 #ifndef _IPXE_DOWNLOADER_H
2 #define _IPXE_DOWNLOADER_H
3 
4 /** @file
5  *
6  * Image downloader
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 
12 struct interface;
13 struct image;
14 
15 extern int create_downloader ( struct interface *job, struct image *image );
16 
17 #endif /* _IPXE_DOWNLOADER_H */
An executable image.
Definition: image.h:24
int create_downloader(struct interface *job, struct image *image)
Instantiate a downloader.
Definition: downloader.c:258
An object interface.
Definition: interface.h:124
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)