Exemplo n.º 1
0
 public static void SListFreeAll(SListHandle handle)
 {
     if (Environment.Is64BitProcess)
     {
         LibCurlNative.SListFreeAll64(handle);
     }
     else
     {
         LibCurlNative.SListFreeAll32(handle);
     }
 }
Exemplo n.º 2
0
 public static extern void SListFreeAll64(SListHandle handle);
Exemplo n.º 3
0
 public static extern SListHandle SListAppend64(SListHandle handle, string @string);
Exemplo n.º 4
0
 public static extern CurlCode EasySetOpt64(CurlEasyHandle handle, CurlOption option, SListHandle value);
Exemplo n.º 5
0
 public static SListHandle SListAppend(SListHandle handle, string @string)
 {
     return(Environment.Is64BitProcess ?
            LibCurlNative.SListAppend64(handle, @string) :
            LibCurlNative.SListAppend32(handle, @string));
 }
Exemplo n.º 6
0
 public static CurlCode EasySetOpt(CurlEasyHandle handle, CurlOption option, SListHandle value)
 {
     return(Environment.Is64BitProcess ?
            LibCurlNative.EasySetOpt64(handle, option, value) :
            LibCurlNative.EasySetOpt32(handle, option, value));
 }
Exemplo n.º 7
0
 public SList(SListHandle handle)
 {
     this.handle = handle;
 }