SoundIoError.cs
 1  namespace Ryujinx.Audio.Backends.SoundIo.Native
 2  {
 3      public enum SoundIoError
 4      {
 5          None = 0,
 6          NoMem = 1,
 7          InitAudioBackend = 2,
 8          SystemResources = 3,
 9          OpeningDevice = 4,
10          NoSuchDevice = 5,
11          Invalid = 6,
12          BackendUnavailable = 7,
13          Streaming = 8,
14          IncompatibleDevice = 9,
15          NoSuchClient = 10,
16          IncompatibleBackend = 11,
17          BackendDisconnected = 12,
18          Interrupted = 13,
19          Underflow = 14,
20          EncodingString = 15,
21      }
22  }