CurlSharp.NativeMethods.curl_version_info C# (CSharp) Method

curl_version_info() private method

private curl_version_info ( CurlVersion ver ) : IntPtr
ver CurlVersion
return System.IntPtr
		internal static extern IntPtr curl_version_info (CurlVersion ver);

Usage Example

Beispiel #1
0
 internal CurlVersionInfoData(CurlVersion ver)
 {
     m_pVersionInfoData = NativeMethods.curl_version_info(ver);
 }