Modules/cURL/curl cleanup
From Multi Theft Auto: Wiki
| This function is provided by the external module cURL. You must install this module to use this function. | |
Cleans up the curl handle.
Syntax
curlCleanup(curl handler)
Required arguments
- curl The curl handler
 
Returns
Nothing usefull
Example
curl = curlInit("http://mtasa.com/");
if not curl then
    outputDebugString("Can't connect to http://mtasa.com/ with cURL");
else
    curlPerform(curl);
    curlCleanup(curl);
    curlClose(curl);
end