Fix stupid nsurl struct mistake for amiga.

This commit is contained in:
Vincent Sanders 2014-11-03 23:19:23 +00:00
parent 68bdb84bee
commit 349e588f81

View File

@ -25,6 +25,7 @@ extern struct gui_download_table *amiga_download_table;
struct download_context;
struct gui_download_window;
struct nsurl;
struct dlnode
{
@ -37,6 +38,6 @@ BOOL ami_download_window_event(struct gui_download_window *dw);
void ami_free_download_list(struct List *dllist);
BOOL ami_download_check_overwrite(const char *file, struct Window *win, ULONG size);
nserror gui_window_save_link(struct gui_window *g, nsurl *url, const char *title);
nserror gui_window_save_link(struct gui_window *g, struct nsurl *url, const char *title);
#endif