diff options
Diffstat (limited to 'src/plugins/fs/download.h')
-rw-r--r-- | src/plugins/fs/download.h | 41 |
1 files changed, 19 insertions, 22 deletions
diff --git a/src/plugins/fs/download.h b/src/plugins/fs/download.h index d03be966..9f09f263 100644 --- a/src/plugins/fs/download.h +++ b/src/plugins/fs/download.h | |||
@@ -31,27 +31,24 @@ | |||
31 | #include <GNUnet/gnunet_fsui_lib.h> | 31 | #include <GNUnet/gnunet_fsui_lib.h> |
32 | #include "fs.h" | 32 | #include "fs.h" |
33 | 33 | ||
34 | DownloadList * | 34 | DownloadList *fs_download_started (struct FSUI_DownloadList *fsui_dl, |
35 | fs_download_started(struct FSUI_DownloadList * fsui_dl, | 35 | DownloadList * dl_parent, |
36 | DownloadList * dl_parent, | 36 | SearchList * sl_parent, |
37 | SearchList * sl_parent, | 37 | unsigned long long total, |
38 | unsigned long long total, | 38 | unsigned int anonymityLevel, |
39 | unsigned int anonymityLevel, | 39 | const ECRS_FileInfo * fi, |
40 | const ECRS_FileInfo * fi, | 40 | const char *filename, |
41 | const char * filename, | 41 | unsigned long long completed, |
42 | unsigned long long completed, | 42 | cron_t eta, FSUI_State state); |
43 | cron_t eta, | 43 | |
44 | FSUI_State state); | 44 | void fs_download_update (DownloadList * downloadContext, |
45 | 45 | unsigned long long completed, | |
46 | void fs_download_update(DownloadList * downloadContext, | 46 | const char *data, unsigned int size); |
47 | unsigned long long completed, | 47 | |
48 | const char * data, | 48 | void fs_download_completed (DownloadList * downloadContext); |
49 | unsigned int size); | 49 | |
50 | 50 | void fs_download_aborted (DownloadList * downloadContext); | |
51 | void fs_download_completed(DownloadList * downloadContext); | 51 | |
52 | 52 | void fs_download_stopped (DownloadList * downloadContext); | |
53 | void fs_download_aborted(DownloadList * downloadContext); | ||
54 | |||
55 | void fs_download_stopped(DownloadList * downloadContext); | ||
56 | 53 | ||
57 | #endif | 54 | #endif |