Initial sketch for a downloader object

This commit is contained in:
Michael Brown
2007-05-01 00:09:19 +00:00
parent e3dcb9a1ad
commit 53da1f1402
2 changed files with 293 additions and 0 deletions

View 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 */