2003-06-30 12:44:03 +00: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
|
2004-06-10 23:55:23 +00:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2003-02-09 12:58:15 +00:00
|
|
|
*/
|
|
|
|
|
2003-09-30 20:33:45 +00:00
|
|
|
/** \file
|
|
|
|
* High-level fetching, caching and conversion (interface).
|
|
|
|
*
|
2004-06-10 23:55:23 +00:00
|
|
|
* The fetchcache() / fetchcache_go() pair of functions retrieve a URL from
|
|
|
|
* the cache, or fetch, convert, and cache it if not cached.
|
2003-09-30 20:33:45 +00:00
|
|
|
*/
|
|
|
|
|
2003-02-09 12:58:15 +00:00
|
|
|
#ifndef _NETSURF_DESKTOP_FETCHCACHE_H_
|
|
|
|
#define _NETSURF_DESKTOP_FETCHCACHE_H_
|
|
|
|
|
2003-09-17 12:57:43 +00:00
|
|
|
#include <stdbool.h>
|
2003-02-09 12:58:15 +00:00
|
|
|
#include "netsurf/content/content.h"
|
|
|
|
|
2003-10-25 14:13:49 +00:00
|
|
|
struct form_successful_control;
|
|
|
|
|
2004-06-10 23:55:23 +00:00
|
|
|
void fetchcache_init(void);
|
|
|
|
struct content * fetchcache(const char *url,
|
2003-06-17 19:24:21 +00:00
|
|
|
void (*callback)(content_msg msg, struct content *c, void *p1,
|
2004-04-24 23:42:32 +00:00
|
|
|
void *p2, union content_msg_data data),
|
2004-06-10 23:55:23 +00:00
|
|
|
void *p1, void *p2,
|
|
|
|
int width, int height,
|
|
|
|
bool no_error_pages,
|
|
|
|
char *post_urlenc,
|
|
|
|
struct form_successful_control *post_multipart,
|
2005-01-03 02:09:20 +00:00
|
|
|
bool cookies,
|
|
|
|
bool download);
|
2004-06-10 23:55:23 +00:00
|
|
|
void fetchcache_go(struct content *content, char *referer,
|
|
|
|
void (*callback)(content_msg msg, struct content *c, void *p1,
|
|
|
|
void *p2, union content_msg_data data),
|
|
|
|
void *p1, void *p2,
|
2005-01-24 23:02:37 +00:00
|
|
|
int width, int height,
|
2004-06-10 23:55:23 +00:00
|
|
|
char *post_urlenc,
|
|
|
|
struct form_successful_control *post_multipart,
|
|
|
|
bool cookies);
|
2003-02-09 12:58:15 +00:00
|
|
|
|
|
|
|
#endif
|