aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Common/AudioDeviceState.cs
blob: b3f968da2a28c4ec1abd6bda92b97a33cf5bdbba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.Audio.Common
{
    /// <summary>
    /// Audio device state.
    /// </summary>
    public enum AudioDeviceState : uint
    {
        /// <summary>
        /// The audio device is started.
        /// </summary>
        Started,

        /// <summary>
        /// The audio device is stopped.
        /// </summary>
        Stopped
    }
}