From ac48668a549fe76648e0ac3f93c9943383e043f5 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 10 Nov 2013 18:02:01 +0000 Subject: curl folder renamed git-svn-id: http://svn.miranda-ng.org/main/trunk@6858 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- .../curl-7.29.0/docs/libcurl/curl_easy_init.html | 60 ---------------------- 1 file changed, 60 deletions(-) delete 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 deleted file mode 100644 index 2f547dcebb..0000000000 --- a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_init.html +++ /dev/null @@ -1,60 +0,0 @@ - - -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