mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-23 02:40:33 +00:00
13 lines
285 B
C#
13 lines
285 B
C#
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
|
|
{
|
|
enum MemoryPoolState
|
|
{
|
|
Invalid = 0,
|
|
Unknown = 1,
|
|
RequestDetach = 2,
|
|
Detached = 3,
|
|
RequestAttach = 4,
|
|
Attached = 5,
|
|
Released = 6
|
|
}
|
|
}
|