2009-03-28 12:50:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2008-9 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AMIGA_DOWNLOAD_H
|
|
|
|
#define AMIGA_DOWNLOAD_H
|
2010-12-30 00:53:11 +00:00
|
|
|
|
|
|
|
#include "amiga/os3support.h"
|
|
|
|
|
2014-01-15 19:37:05 +00:00
|
|
|
extern struct gui_download_table *amiga_download_table;
|
2014-01-14 16:04:02 +00:00
|
|
|
|
2010-04-05 21:35:38 +00:00
|
|
|
struct download_context;
|
2011-03-26 10:33:58 +00:00
|
|
|
struct gui_download_window;
|
2014-11-09 19:44:59 +00:00
|
|
|
struct gui_window;
|
2014-11-03 23:19:23 +00:00
|
|
|
struct nsurl;
|
2010-04-05 21:35:38 +00:00
|
|
|
|
2009-03-28 12:50:19 +00:00
|
|
|
struct dlnode
|
|
|
|
{
|
|
|
|
struct Node node;
|
|
|
|
char *filename;
|
|
|
|
};
|
|
|
|
|
2009-04-30 18:40:26 +00:00
|
|
|
void ami_download_window_abort(struct gui_download_window *dw);
|
2010-04-09 22:38:51 +00:00
|
|
|
BOOL ami_download_window_event(struct gui_download_window *dw);
|
2009-03-28 12:50:19 +00:00
|
|
|
void ami_free_download_list(struct List *dllist);
|
2011-07-23 15:19:27 +00:00
|
|
|
BOOL ami_download_check_overwrite(const char *file, struct Window *win, ULONG size);
|
2014-01-12 17:07:34 +00:00
|
|
|
|
2014-11-03 23:19:23 +00:00
|
|
|
nserror gui_window_save_link(struct gui_window *g, struct nsurl *url, const char *title);
|
2014-01-12 17:07:34 +00:00
|
|
|
|
2009-03-28 12:50:19 +00:00
|
|
|
#endif
|