CSPspEmu.Hle.Modules.threadman.ThreadManForUser.sceKernelCreateVpl C# (CSharp) Метод

sceKernelCreateVpl() приватный Метод

private sceKernelCreateVpl ( string Name, MemoryPartitions PartitionId, VplAttributeEnum Attribute, int Size, void Options ) : VariablePool
Name string
PartitionId MemoryPartitions
Attribute VplAttributeEnum
Size int
Options void
Результат VariablePool
        public VariablePool sceKernelCreateVpl(string Name, MemoryPartitions PartitionId, VplAttributeEnum Attribute, int Size, void* Options)
        {
            var VariablePool = new VariablePool(this)
            {
                PartitionId= PartitionId,
                Info = new SceKernelVplInfo()
                {
                    Attribute = Attribute,
                    PoolSize = Size,
                    FreeSize = Size,
                }
            };

            VariablePool.Init();

            return VariablePool;
        }
ThreadManForUser