FMOD.DSP.FMOD_DSP_GetInfo C# (CSharp) Method

FMOD_DSP_GetInfo() private method

private FMOD_DSP_GetInfo ( IntPtr dsp, IntPtr name, uint &version, int &channels, int &configwidth, int &configheight ) : RESULT
dsp System.IntPtr
name System.IntPtr
version uint
channels int
configwidth int
configheight int
return RESULT
        private static extern RESULT FMOD_DSP_GetInfo                   (IntPtr dsp, IntPtr name, out uint version, out int channels, out int configwidth, out int configheight);
        [DllImport(VERSION.dll)]

Usage Example

Example #1
0
 public RESULT getInfo(StringBuilder name, ref uint version, ref int channels, ref int configwidth, ref int configheight)
 {
     return(DSP.FMOD_DSP_GetInfo(dspraw, name, ref version, ref channels, ref configwidth, ref configheight));
 }