示例#1
0
 public static extern void DecompressClean(ref HuffmanObj obj);
示例#2
0
 public static extern void Decompress([In, Out] byte[] dest, byte[] src, out int dest_size, ref int src_size, ref HuffmanObj obj);
示例#3
0
 public Huffman()
 {
     obj = new HuffmanObj();
     NativeEncryption.DecompressClean(ref obj);
 }
示例#4
0
 public static extern void DecompressClean(ref HuffmanObj obj);
示例#5
0
 public static extern void Decompress([In, Out] byte[] dest, byte[] src, out int dest_size, ref int src_size, ref HuffmanObj obj);
示例#6
0
文件: Huffman.cs 项目: byterj/phoenix
 public Huffman()
 {
     obj = new HuffmanObj();
     NativeEncryption.DecompressClean(ref obj);
 }