From dcce39da3e6f7485dca39950dfc835563de3c3ea Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 25 Feb 2013 10:15:31 +0000 Subject: 1 step: libcurl static link git-svn-id: http://svn.miranda-ng.org/main/trunk@3763 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- .../curl-7.29.0/docs/libcurl/curl_share_init.html | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_share_init.html (limited to 'plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_share_init.html') diff --git a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_share_init.html b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_share_init.html new file mode 100644 index 0000000000..ebf555be4d --- /dev/null +++ b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_share_init.html @@ -0,0 +1,59 @@ + + +curl_share_init man page + + + + +

NAME

+

curl_share_init - Create a shared object

SYNOPSIS

+

#include <curl/curl.h> +

CURLSH *curl_share_init( ); +

DESCRIPTION

+

This function returns a CURLSH handle to be used as input to all the other share-functions, sometimes referred to as a share handle in some places in the documentation. This init call MUST have a corresponding call to curl_share_cleanup when all operations using the share are complete. +

This share handle is what you pass to curl using the CURLOPT_SHARE option with curl_easy_setopt(3), to make that specific curl handle use the data in this share.

RETURN VALUE

+

If this function returns NULL, something went wrong (out of memory, etc.) and therefore the share object was not created.

SEE ALSO

+

curl_share_cleanup (3) curl_share_setopt (3) +

+ This HTML page was made with roffit. + -- cgit v1.2.3