Esempio n. 1
0
 internal static void lzma_end(ref LzmaStream stream)
 {
     if (IntPtr.Size > 4)
     {
         X64.lzma_end(ref stream);
     }
     else
     {
         X86.lzma_end(ref stream);
     }
 }
Esempio n. 2
0
 internal static extern LzmaReturn lzma_stream_encoder_mt(ref LzmaStream stream, ref LzmaMT mt);
Esempio n. 3
0
 internal static extern LzmaReturn lzma_stream_decoder(ref LzmaStream stream, UInt64 memLimit, UInt32 flags);
Esempio n. 4
0
 internal static extern void lzma_end(ref LzmaStream stream);
Esempio n. 5
0
 internal static extern LzmaReturn lzma_code(ref LzmaStream stream, LzmaAction action);
Esempio n. 6
0
 internal static extern LzmaReturn lzma_stream_encoder_mt(ref LzmaStream stream, ref LzmaMT mt);
Esempio n. 7
0
 internal static extern void lzma_end(ref LzmaStream stream);
Esempio n. 8
0
 internal static extern LzmaReturn lzma_code(ref LzmaStream stream, LzmaAction action);
Esempio n. 9
0
 internal static extern LzmaReturn lzma_stream_decoder(ref LzmaStream stream, UInt64 memLimit, UInt32 flags);
Esempio n. 10
0
 internal static extern LzmaReturn lzma_easy_encoder(ref LzmaStream stream, UInt32 preset, LzmaCheck check);
Esempio n. 11
0
 internal static LzmaReturn lzma_easy_encoder(ref LzmaStream stream, UInt32 preset, LzmaCheck check)
 => IntPtr.Size > 4 ? X64.lzma_easy_encoder(ref stream, preset, check) : X86.lzma_easy_encoder(ref stream, preset, check);
Esempio n. 12
0
 internal static LzmaReturn lzma_stream_encoder_mt(ref LzmaStream stream, ref LzmaMT mt)
 => IntPtr.Size > 4 ? X64.lzma_stream_encoder_mt(ref stream, ref mt) : X86.lzma_stream_encoder_mt(ref stream, ref mt);
Esempio n. 13
0
 internal static LzmaReturn lzma_code(ref LzmaStream stream, LzmaAction action) => IntPtr.Size > 4 ? X64.lzma_code(ref stream, action) : X86.lzma_code(ref stream, action);
Esempio n. 14
0
 internal static LzmaReturn lzma_stream_decoder(ref LzmaStream stream, UInt64 memLimit, UInt32 flags)
 => IntPtr.Size > 4 ? X64.lzma_stream_decoder(ref stream, memLimit, flags) : X86.lzma_stream_decoder(ref stream, memLimit, flags);