mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
19 lines
442 B
C#
19 lines
442 B
C#
namespace PortAudioSharp
|
|
{
|
|
internal struct PaStreamInfo
|
|
{
|
|
public int structVersion;
|
|
|
|
public double inputLatency;
|
|
|
|
public double outputLatency;
|
|
|
|
public double sampleRate;
|
|
|
|
public override string ToString()
|
|
{
|
|
return "[" + ((object)this).GetType().Name + "]\nstructVersion: " + this.structVersion + "\ninputLatency: " + this.inputLatency + "\noutputLatency: " + this.outputLatency + "\nsampleRate: " + this.sampleRate;
|
|
}
|
|
}
|
|
}
|