summaryrefslogtreecommitdiff
path: root/javascript/fetcher.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-08-25 15:58:56 -0700
committerVincent Sanders <vince@kyllikki.org>2014-08-25 15:59:52 -0700
commit37755fb135f9e582bd35ef6d282515ee71d619f2 (patch)
tree05f74bda80ba63bde9c97948879ae1ab83585316 /javascript/fetcher.h
parent5b815861f36700548c124102eb9f0e986dac8a20 (diff)
downloadnetsurf-37755fb135f9e582bd35ef6d282515ee71d619f2.tar.gz
netsurf-37755fb135f9e582bd35ef6d282515ee71d619f2.tar.bz2
add incomplete scheme fetcher for javascript urls
Diffstat (limited to 'javascript/fetcher.h')
-rw-r--r--javascript/fetcher.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/javascript/fetcher.h b/javascript/fetcher.h
new file mode 100644
index 000000000..f39714089
--- /dev/null
+++ b/javascript/fetcher.h
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2014 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+/** \file
+ * javascript scheme handler
+ */
+
+#ifndef NETSURF_JAVASCRIPT_FETCHER_H
+#define NETSURF_JAVASCRIPT_FETCHER_H
+
+nserror fetch_javascript_register(void);
+
+#endif