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:
26
CUETools.Codecs.CoreAudio/CoreAudioApi/Role.cs
Normal file
26
CUETools.Codecs.CoreAudio/CoreAudioApi/Role.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NAudio.CoreAudioApi
|
||||
{
|
||||
/// <summary>
|
||||
/// The ERole enumeration defines constants that indicate the role
|
||||
/// that the system has assigned to an audio endpoint device
|
||||
/// </summary>
|
||||
public enum Role
|
||||
{
|
||||
/// <summary>
|
||||
/// Games, system notification sounds, and voice commands.
|
||||
/// </summary>
|
||||
Console,
|
||||
/// <summary>
|
||||
/// Music, movies, narration, and live music recording
|
||||
/// </summary>
|
||||
Multimedia,
|
||||
/// <summary>
|
||||
/// Voice communications (talking to another person).
|
||||
/// </summary>
|
||||
Communications,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user