public static void SListFreeAll(SListHandle handle) { if (Environment.Is64BitProcess) { LibCurlNative.SListFreeAll64(handle); } else { LibCurlNative.SListFreeAll32(handle); } }
public static extern void SListFreeAll64(SListHandle handle);
public static extern SListHandle SListAppend64(SListHandle handle, string @string);
public static extern CurlCode EasySetOpt64(CurlEasyHandle handle, CurlOption option, SListHandle value);
public static SListHandle SListAppend(SListHandle handle, string @string) { return(Environment.Is64BitProcess ? LibCurlNative.SListAppend64(handle, @string) : LibCurlNative.SListAppend32(handle, @string)); }
public static CurlCode EasySetOpt(CurlEasyHandle handle, CurlOption option, SListHandle value) { return(Environment.Is64BitProcess ? LibCurlNative.EasySetOpt64(handle, option, value) : LibCurlNative.EasySetOpt32(handle, option, value)); }
public SList(SListHandle handle) { this.handle = handle; }