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_easy_init.html | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_init.html (limited to 'plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_init.html') diff --git a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_init.html b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_init.html new file mode 100644 index 0000000000..2f547dcebb --- /dev/null +++ b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_init.html @@ -0,0 +1,60 @@ + + +curl_easy_init man page + + + + +

NAME

+

curl_easy_init - Start a libcurl easy session

SYNOPSIS

+

#include <curl/curl.h> +

CURL *curl_easy_init( ); +

DESCRIPTION

+

This function must be the first function to call, and it returns a CURL easy handle that you must use as input to other easy-functions. curl_easy_init initializes curl and this call MUST have a corresponding call to curl_easy_cleanup(3) when the operation is complete. +

If you did not already call curl_global_init(3), curl_easy_init(3) does it automatically. This may be lethal in multi-threaded cases, since curl_global_init(3) is not thread-safe, and it may result in resource problems because there is no corresponding cleanup. +

You are strongly advised to not allow this automatic behaviour, by calling curl_global_init(3) yourself properly. See the description in libcurl(3) of global environment requirements for details of how to use this function. +

RETURN VALUE

+

If this function returns NULL, something went wrong and you cannot use the other curl functions.

SEE ALSO

+

curl_easy_cleanup (3) curl_global_init (3) curl_easy_reset (3)

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