Use standard xfer_open() argument list for downloader instantiator

This commit is contained in:
Michael Brown
2007-06-09 17:42:46 +01:00
parent 08e286714f
commit 7c8cc3ef6c
2 changed files with 14 additions and 9 deletions

View File

@@ -10,8 +10,8 @@
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 * ) );
extern int create_downloader ( struct job_interface *job, struct image *image,
int ( * register_image ) ( struct image *image ),
int type, ... );
#endif /* _GPXE_DOWNLOADER_H */