mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-10 23:37:43 +02: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,
|
|
}
|
|
}
|