mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
12 lines
199 B
C#
12 lines
199 B
C#
namespace PortAudioSharp
|
|
{
|
|
internal enum PaStreamCallbackFlags : uint
|
|
{
|
|
PaInputUnderflow = 1u,
|
|
PaInputOverflow,
|
|
PaOutputUnderflow = 4u,
|
|
PaOutputOverflow = 8u,
|
|
PaPrimingOutput = 0x10
|
|
}
|
|
}
|