Ryujinx/Ryujinx.Core/OsHle/Handles/HTransferMem.cs

21 lines
568 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using ChocolArm64.Memory;
namespace Ryujinx.Core.OsHle.Handles
2018-02-05 00:08:20 +01:00
{
class HTransferMem
{
public AMemory Memory { get; private set; }
public AMemoryPerm Perm { get; private set; }
public long Position { get; private set; }
public long Size { get; private set; }
public HTransferMem(AMemory Memory, AMemoryPerm Perm, long Position, long Size)
2018-02-05 00:08:20 +01:00
{
this.Memory = Memory;
this.Perm = Perm;
this.Position = Position;
this.Size = Size;
}
}
}