2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
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; }
|
|
|
|
|
2018-02-07 17:44:48 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|