summaryrefslogtreecommitdiff
path: root/content/fetchers/fetch_curl.h
blob: 6dcba89147c7722dd0127308ef0de238b3c643e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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