NewTOAPIA.Media.WinMM.WaveOutputPort.GetErrorText C# (CSharp) Method

GetErrorText() public static method

public static GetErrorText ( int mmrError, StringBuilder errorText, int textSize ) : MMSYSERROR
mmrError int
errorText StringBuilder
textSize int
return MMSYSERROR
        public static MMSYSERROR GetErrorText(int mmrError, StringBuilder errorText, int textSize)
        {
            MMSYSERROR result = winmm.waveOutGetErrorText(mmrError, errorText, textSize);

            return result;
        }