summaryrefslogtreecommitdiff
path: root/desktop/gui_factory.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-10-16 09:41:50 +0100
committerVincent Sanders <vince@kyllikki.org>2014-10-16 22:33:43 +0100
commitab7f3e31800ade0cec9c071e61cc001ee9470f69 (patch)
tree683abf5132e18fb62454d3c0a4afa548827e5722 /desktop/gui_factory.h
parent9d3c2b18c4ad5229cfb931f81be75a5978f300cd (diff)
downloadnetsurf-ab7f3e31800ade0cec9c071e61cc001ee9470f69.tar.gz
netsurf-ab7f3e31800ade0cec9c071e61cc001ee9470f69.tar.bz2
Split up graphical user interface operations table headers
This is the initial part of a series which splits up the API interface definitions for the frontends removing a great deal of unnecessary file inclusion and further isolates the fronted API usage from the core
Diffstat (limited to 'desktop/gui_factory.h')
-rw-r--r--desktop/gui_factory.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/desktop/gui_factory.h b/desktop/gui_factory.h
deleted file mode 100644
index 3c8661577..000000000
--- a/desktop/gui_factory.h
+++ /dev/null
@@ -1,39 +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 gui interface factory
- */
-
-#ifndef _NETSURF_DESKTOP_GUI_FACTORY_H_
-#define _NETSURF_DESKTOP_GUI_FACTORY_H_
-
-#include "desktop/gui.h"
-
-/** The global operation table */
-extern struct netsurf_table *guit;
-
-/** register and verify global operation table
- *
- * @param gt The global table to register
- * @return NSERROR_OK on success or error code on faliure. On faliure
- * global table will not be initialised
- */
-nserror gui_factory_register(struct netsurf_table *gt);
-
-#endif