Пример #1
0
 public static void SListFreeAll(SListHandle handle)
 {
     if (Environment.Is64BitProcess)
     {
         LibCurlNative.SListFreeAll64(handle);
     }
     else
     {
         LibCurlNative.SListFreeAll32(handle);
     }
 }
Пример #2
0
 public static extern void SListFreeAll64(SListHandle handle);
Пример #3
0
 public static extern SListHandle SListAppend64(SListHandle handle, string @string);
Пример #4
0
 public static extern CurlCode EasySetOpt64(CurlEasyHandle handle, CurlOption option, SListHandle value);
Пример #5
0
 public static SListHandle SListAppend(SListHandle handle, string @string)
 {
     return(Environment.Is64BitProcess ?
            LibCurlNative.SListAppend64(handle, @string) :
            LibCurlNative.SListAppend32(handle, @string));
 }
Пример #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));
 }
Пример #7
0
 public SList(SListHandle handle)
 {
     this.handle = handle;
 }