mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
2.0.7
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user