mirror of
https://github.com/ipxe/ipxe
synced 2025-12-21 12:30:20 +03:00
Initial sketch for a downloader object
This commit is contained in:
17
src/include/gpxe/downloader.h
Normal file
17
src/include/gpxe/downloader.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef _GPXE_DOWNLOADER_H
|
||||
#define _GPXE_DOWNLOADER_H
|
||||
|
||||
/** @file
|
||||
*
|
||||
* Image downloader
|
||||
*
|
||||
*/
|
||||
|
||||
struct job_interface;
|
||||
struct image;
|
||||
|
||||
extern int create_downloader ( struct job_interface *job,
|
||||
const char *uri_string, struct image *image,
|
||||
int ( * register_image ) ( struct image * ) );
|
||||
|
||||
#endif /* _GPXE_DOWNLOADER_H */
|
||||
Reference in New Issue
Block a user