using System; using System.Runtime.InteropServices; namespace libncmdump_demo_cli { /// /// NeteaseCrypt C# Wrapper /// class NeteaseCrypt { const string DLL_PATH = "libncmdump.dll"; [DllImport(DLL_PATH, CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr CreateNeteaseCrypt(IntPtr path); [DllImport(DLL_PATH, CallingConvention = CallingConvention.Cdecl)] private static extern int Dump(IntPtr NeteaseCrypt); [DllImport(DLL_PATH, CallingConvention = CallingConvention.Cdecl)] private static extern void FixMetadata(IntPtr NeteaseCrypt); [DllImport(DLL_PATH, CallingConvention = CallingConvention.Cdecl)] private static extern void DestroyNeteaseCrypt(IntPtr NeteaseCrypt); private IntPtr NeteaseCryptClass = IntPtr.Zero; /// /// 创建 NeteaseCrypt 类的实例。 /// /// 网易云音乐 ncm 加密文件路径 public NeteaseCrypt(string FileName) { NeteaseCryptClass = CreateNeteaseCrypt(Marshal.StringToHGlobalAnsi(FileName)); } /// /// 启动转换过程。 /// /// 返回一个整数,指示转储过程的结果。如果成功,返回0;如果失败,返回1。 public int Dump() { return Dump(NeteaseCryptClass); } /// /// 修复音乐文件元数据。 /// public void FixMetadata() { FixMetadata(NeteaseCryptClass); } /// /// 销毁 NeteaseCrypt 类的实例。 /// public void Destroy() { DestroyNeteaseCrypt(NeteaseCryptClass); } } }