mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 12:06:39 +00:00
13 lines
295 B
C#
13 lines
295 B
C#
namespace Ryujinx.HLE.OsHle.Services.Aud
|
|
{
|
|
enum MemoryPoolStates : int
|
|
{
|
|
Invalid = 0x0,
|
|
Unknown = 0x1,
|
|
RequestDetach = 0x2,
|
|
Detached = 0x3,
|
|
RequestAttach = 0x4,
|
|
Attached = 0x5,
|
|
Released = 0x6,
|
|
}
|
|
}
|