mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-27 14:29:42 +03:00
889ae885c6
Add content instances. svn path=/import/netsurf/; revision=216
19 lines
597 B
C
19 lines
597 B
C
/*
|
|
* 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>
|
|
*/
|
|
|
|
#ifndef _NETSURF_DESKTOP_FETCHCACHE_H_
|
|
#define _NETSURF_DESKTOP_FETCHCACHE_H_
|
|
|
|
#include "netsurf/content/content.h"
|
|
|
|
struct content * fetchcache(const char *url, char *referer,
|
|
void (*callback)(content_msg msg, struct content *c, void *p1,
|
|
void *p2, const char *error),
|
|
void *p1, void *p2, unsigned long width, unsigned long height);
|
|
|
|
#endif
|