mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
35 lines
837 B
C#
35 lines
837 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace NAudio.CoreAudioApi
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AUDCLNT_STREAMFLAGS
|
|||
|
|
/// </summary>
|
|||
|
|
[Flags]
|
|||
|
|
public enum AudioClientStreamFlags
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// None
|
|||
|
|
/// </summary>
|
|||
|
|
None,
|
|||
|
|
/// <summary>
|
|||
|
|
/// AUDCLNT_STREAMFLAGS_CROSSPROCESS
|
|||
|
|
/// </summary>
|
|||
|
|
CrossProcess = 0x00010000,
|
|||
|
|
/// <summary>
|
|||
|
|
/// AUDCLNT_STREAMFLAGS_LOOPBACK
|
|||
|
|
/// </summary>
|
|||
|
|
Loopback = 0x00020000,
|
|||
|
|
/// <summary>
|
|||
|
|
/// AUDCLNT_STREAMFLAGS_EVENTCALLBACK
|
|||
|
|
/// </summary>
|
|||
|
|
EventCallback = 0x00040000,
|
|||
|
|
/// <summary>
|
|||
|
|
/// AUDCLNT_STREAMFLAGS_NOPERSIST
|
|||
|
|
/// </summary>
|
|||
|
|
NoPersist = 0x00080000,
|
|||
|
|
}
|
|||
|
|
}
|