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
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13struct interface;
14struct image;
15
16extern int create_downloader ( struct interface *job, struct image *image );
17
18#endif /* _IPXE_DOWNLOADER_H */
int create_downloader(struct interface *job, struct image *image)
Instantiate a downloader.
Definition downloader.c:263
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
An executable image.
Definition image.h:24
An object interface.
Definition interface.h:125