From da7904554c476f4e8451cc54f6f3de882c2f03b6 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 23 Sep 2020 08:48:17 +0100 Subject: split out about scheme testament handler --- content/fetchers/about/atestament.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 content/fetchers/about/atestament.h (limited to 'content/fetchers/about/atestament.h') diff --git a/content/fetchers/about/atestament.h b/content/fetchers/about/atestament.h new file mode 100644 index 000000000..1851e8f3c --- /dev/null +++ b/content/fetchers/about/atestament.h @@ -0,0 +1,35 @@ +/* + * Copyright 2020 Vincent Sanders + * + * This file is part of NetSurf. + * + * 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 . + */ + +/** + * \file + * about scheme testament handler interface + */ + +#ifndef NETSURF_CONTENT_FETCHERS_ABOUT_TESTAMENT_H +#define NETSURF_CONTENT_FETCHERS_ABOUT_TESTAMENT_H + +/** + * Handler to generate about scheme testament page. + * + * \param ctx The fetcher context. + * \return true if handled false if aborted. + */ +bool fetch_about_testament_handler(struct fetch_about_context *ctx); + +#endif -- cgit v1.2.3