2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_DESKTOP_FETCHCACHE_H_
|
|
|
|
#define _NETSURF_DESKTOP_FETCHCACHE_H_
|
|
|
|
|
|
|
|
#include "netsurf/content/content.h"
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
struct content * fetchcache(const char *url, char *referer,
|
|
|
|
void (*callback)(content_msg msg, struct content *c, void *p1,
|
|
|
|
void *p2, const char *error),
|
2003-07-15 02:57:45 +04:00
|
|
|
void *p1, void *p2, unsigned long width, unsigned long height);
|
2003-02-09 15:58:15 +03:00
|
|
|
|
|
|
|
#endif
|