diff options
| author | Michael Brown | 2007-06-09 18:42:46 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-06-09 18:42:46 +0200 |
| commit | 7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b (patch) | |
| tree | 9014b799af187b81962f20efd4d9d8914f385971 /src/include | |
| parent | Add reference counting to register/unregister procedure. (diff) | |
| download | ipxe-7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b.tar.gz ipxe-7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b.tar.xz ipxe-7c8cc3ef6cfdacdb6dcf1f556070069f8446e64b.zip | |
Use standard xfer_open() argument list for downloader instantiator
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/gpxe/downloader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gpxe/downloader.h b/src/include/gpxe/downloader.h index 956bbce0a..33aa76921 100644 --- a/src/include/gpxe/downloader.h +++ b/src/include/gpxe/downloader.h @@ -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 */ |
