コード例 #1
0
ファイル: NativeEncryption.cs プロジェクト: byterj/phoenix
 public static extern void DecompressClean(ref HuffmanObj obj);
コード例 #2
0
ファイル: NativeEncryption.cs プロジェクト: byterj/phoenix
 public static extern void Decompress([In, Out] byte[] dest, byte[] src, out int dest_size, ref int src_size, ref HuffmanObj obj);
コード例 #3
0
ファイル: Huffman.cs プロジェクト: greeduomacro/phoenix
 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);
 }