using System; namespace NAudio.CoreAudioApi { /// /// The ERole enumeration defines constants that indicate the role /// that the system has assigned to an audio endpoint device /// public enum Role { /// /// Games, system notification sounds, and voice commands. /// Console, /// /// Music, movies, narration, and live music recording /// Multimedia, /// /// Voice communications (talking to another person). /// Communications, } }