summaryrefslogtreecommitdiff
path: root/amiga/fetch_mailto.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-12-13 23:28:26 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-12-13 23:28:26 +0000
commitd36799e07ddbb42533ffdfc5113bbe38324bb1b1 (patch)
treeea4231e4b30f0228f5ef733117bbfa712cc599fd /amiga/fetch_mailto.h
parent689f2e42327f95a25a4ece115b67e235487a919a (diff)
downloadnetsurf-d36799e07ddbb42533ffdfc5113bbe38324bb1b1.tar.gz
netsurf-d36799e07ddbb42533ffdfc5113bbe38324bb1b1.tar.bz2
First attempt at mailto: fetcher using openurl.library.
Doesn't quite work properly because it never calls the callback :) Probably also gets into an infinite loop if "send mailto: URLs to email application" is not ticked in OpenURL Prefs. svn path=/trunk/netsurf/; revision=5910
Diffstat (limited to 'amiga/fetch_mailto.h')
-rwxr-xr-xamiga/fetch_mailto.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/amiga/fetch_mailto.h b/amiga/fetch_mailto.h
new file mode 100755
index 000000000..4b23a9b49
--- /dev/null
+++ b/amiga/fetch_mailto.h
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2008 Chris Young <chris@unsatisfactorysoftware.co.uk>
+ *
+ * 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
+ * Fetching of data from a URL (Registration).
+ */
+
+#ifndef AMIGA_FETCH_MAILTO_H
+#define AMIGA_FETCH_MAILTO_H
+
+void ami_fetch_mailto_register(void);
+#endif