summaryrefslogtreecommitdiff
path: root/content/fetchers/fetch_curl.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetchers/fetch_curl.h')
-rw-r--r--content/fetchers/fetch_curl.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/content/fetchers/fetch_curl.h b/content/fetchers/fetch_curl.h
new file mode 100644
index 000000000..6dcba8914
--- /dev/null
+++ b/content/fetchers/fetch_curl.h
@@ -0,0 +1,22 @@
+/*
+ * This file is part of NetSurf, http://netsurf-browser.org/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2007 Daniel Silverstone <dsilvers@digital-scurf.org>
+ */
+
+/** \file
+ * Fetching of data from a URL (Registration).
+ */
+
+#ifndef NETSURF_CONTENT_FETCHERS_FETCH_CURL_H
+#define NETSURF_CONTENT_FETCHERS_FETCH_CURL_H
+
+#include <curl/curl.h>
+
+void register_curl_fetchers(void);
+
+/** Global cURL multi handle. */
+extern CURLM *fetch_curl_multi;
+
+#endif