mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
13 lines
224 B
C#
13 lines
224 B
C#
|
|
namespace PortAudioSharp
|
||
|
|
{
|
||
|
|
internal enum PaStreamFlags : uint
|
||
|
|
{
|
||
|
|
PaNoFlag,
|
||
|
|
PaClipOff,
|
||
|
|
PaDitherOff,
|
||
|
|
PaNeverDropInput = 4u,
|
||
|
|
PaPrimeOutputBuffersUsingStreamCallback = 8u,
|
||
|
|
PaPlatformSpecificFlags = 4294901760u
|
||
|
|
}
|
||
|
|
}
|