2018-02-04 18:08:20 -05:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
|
2018-06-10 20:46:42 -04:00
|
|
|
namespace Ryujinx.HLE.OsHle.Handles
|
2018-02-04 18:08:20 -05: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; }
|
|
|
|
|
2018-02-07 11:44:48 -05:00
|
|
|
public HTransferMem(AMemory Memory, AMemoryPerm Perm, long Position, long Size)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
|
|
|
this.Memory = Memory;
|
|
|
|
this.Perm = Perm;
|
|
|
|
this.Position = Position;
|
|
|
|
this.Size = Size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|