namespace Ryujinx.Audio.Common { /// /// Audio device state. /// public enum AudioDeviceState : uint { /// /// The audio device is started. /// Started, /// /// The audio device is stopped. /// Stopped } }