SDRSharper/SDRSharper.Radio/PortAudioSharp/PaHostErrorInfo.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

20 lines
435 B
C#

using System.Runtime.InteropServices;
namespace PortAudioSharp
{
internal struct PaHostErrorInfo
{
public PaHostApiTypeId hostApiType;
public int errorCode;
[MarshalAs(UnmanagedType.LPStr)]
public string errorText;
public override string ToString()
{
return "[" + ((object)this).GetType().Name + "]\nhostApiType: " + this.hostApiType + "\nerrorCode: " + this.errorCode + "\nerrorText: " + this.errorText;
}
}
}