public unsafe struct _PlayParam
{
public UInt32 hWnd;
public Int32 Priority;
public Int32 MultiGroup;
public Int32 CastMode;
}
[DllImport(LCAudioThrDll.dll, EntryPoint = "lc_play_getmem")]
public static extern _PlayParam* Lc_Play_GetMem();
c#代码里面包含指针,不知道怎么转了,想将这段c#的代码转成vb.net; LCAudioThrDll.dll是c++的dll,里面的变量是指针类型
unsafe的代码,VB.NET不支持
只能封装成dll,让VB.NET调用