summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-05-30 11:29:39 +0100
committerVincent Sanders <vince@kyllikki.org>2016-05-30 11:29:39 +0100
commit527756cca0471a55389a3494d35f9b1b13f20b7e (patch)
tree1082a6caf6b5a41ec836fba207fe57b50629bba9 /desktop
parentfe7eb85614244d5e0659c88431fbd9726fa33051 (diff)
downloadnetsurf-527756cca0471a55389a3494d35f9b1b13f20b7e.tar.gz
netsurf-527756cca0471a55389a3494d35f9b1b13f20b7e.tar.bz2
move fetch header into public API
Diffstat (limited to 'desktop')
-rw-r--r--desktop/gui_factory.c2
-rw-r--r--desktop/gui_fetch.h104
2 files changed, 1 insertions, 105 deletions
diff --git a/desktop/gui_factory.c b/desktop/gui_factory.c
index c1a061097..e2549cc74 100644
--- a/desktop/gui_factory.c
+++ b/desktop/gui_factory.c
@@ -31,7 +31,7 @@
#include "desktop/download.h"
#include "desktop/searchweb.h"
#include "netsurf/download.h"
-#include "desktop/gui_fetch.h"
+#include "netsurf/fetch.h"
#include "netsurf/misc.h"
#include "netsurf/window.h"
#include "netsurf/search.h"
diff --git a/desktop/gui_fetch.h b/desktop/gui_fetch.h
deleted file mode 100644
index 22c5e6a2e..000000000
--- a/desktop/gui_fetch.h
+++ /dev/null
@@ -1,104 +0,0 @@
-/*
- * Copyright 2014 Vincent Sanders <vince@netsurf-browser.org>
- *
- * 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/>.
- */
-
-/**
- * \file
- *
- * Interface to platform-specific fetcher operations.
- */
-
-#ifndef _NETSURF_DESKTOP_GUI_FETCH_H_
-#define _NETSURF_DESKTOP_GUI_FETCH_H_
-
-struct nsurl;
-
-/**
- * function table for fetcher operations.
- */
-struct gui_fetch_table {
- /* Mandantory entries */
-
- /**
- * Determine the MIME type of a local file.
- *
- * @note used in file fetcher
- *
- * \param unix_path Unix style path to file on disk
- * \return Pointer to MIME type string (should not be freed) -
- * invalidated on next call to fetch_filetype.
- */
- const char *(*filetype)(const char *unix_path);
-
- /* Optional entries */
-
- /**
- * Translate resource to full url.
- *
- * @note Only used in resource fetcher
- *
- * Transforms a resource: path into a full URL. The returned URL
- * is used as the target for a redirect. The caller takes ownership of
- * the returned nsurl including unrefing it when finished with it.
- *
- * \param path The path of the resource to locate.
- * \return A string containing the full URL of the target object or
- * NULL if no suitable resource can be found.
- */
- struct nsurl* (*get_resource_url)(const char *path);
-
- /**
- * Translate resource to source data.
- *
- * @note Only used in resource fetcher
- *
- * Obtains the data for a resource directly
- *
- * \param path The path of the resource to locate.
- * \param data Pointer to recive data into
- * \param data_len Pointer to length of returned data
- * \return NSERROR_OK and the data and length values updated
- * else appropriate error code.
- */
- nserror (*get_resource_data)(const char *path, const uint8_t **data, size_t *data_len);
-
- /**
- * Releases source data.
- *
- * @note Only used in resource fetcher
- *
- * Releases source data obtained from get_resource_data()
- *
- * \param data The value returned from a previous get_resource_data call
- * \return NSERROR_OK on success else appropriate error code.
- */
- nserror (*release_resource_data)(const uint8_t *data);
-
- /**
- * Find a MIME type for a local file
- *
- * @note only used in curl fetcher in form file controls on
- * RISC OS otherwise its a strdup of a filetype call.
- *
- * \param ro_path RISC OS style path to file on disk
- * \return MIME type string (on heap, caller should free), or NULL
- */
- char *(*mimetype)(const char *ro_path);
-
-};
-
-#endif