示例#1
0
文件: Dsp.cs 项目: punker76/FmodAudio
 public unsafe void GetInfo(out string name, out FmodVersion version, out int channels, out int configWidth, out int configHeight)
 {
     library.DSP_GetInfo(Handle, out name, out version, out channels, out configWidth, out configHeight);
 }
示例#2
0
 internal PluginInfo(string name, PluginType type, FmodVersion version)
 {
     Name    = name;
     Type    = type;
     Version = version;
 }