27 lines
649 B
C#
27 lines
649 B
C#
using System;
|
|
|
|
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,
|
|
}
|
|
}
|