我怎样才能获得liblz4.dll

时间:2016-06-28 20:13:06

标签: c# c unity3d port

我正在使用Unity3D。 在那里我将使用LZ4库。 所以我输入了这个。

[DllImport("liblz4", EntryPoint = "LZ4DecompressFile")]
internal static extern int LZ4DecompressFile(string inFile, string outFile, IntPtr bytes, IntPtr FileBuffer, int fileBufferLength);

但是当调用此函数时,我收到错误

  

" DllNotFoundException:liblz4"

我在哪里可以找到liblz4?

1 个答案:

答案 0 :(得分:0)

请记住,您的应用程序是由Unity编译的,因此您需要在您的Unity项目中包含该库。查看此处发布的答案以获取更多信息:http://answers.unity3d.com/questions/458300/how-to-use-a-external-dll.html