Ryujinx/Ryujinx.HLE/Utilities/StructWriter.cs

26 lines
567 B
C#
Raw Normal View History

using ChocolArm64.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.Utilities
{
class StructWriter
{
2018-12-01 21:01:59 +01:00
private MemoryManager _memory;
public long Position { get; private set; }
2018-12-01 21:01:59 +01:00
public StructWriter(MemoryManager memory, long position)
{
2018-12-01 21:01:59 +01:00
this._memory = memory;
this.Position = position;
}
2018-12-01 21:01:59 +01:00
public void Write<T>(T value) where T : struct
{
2018-12-01 21:01:59 +01:00
MemoryHelper.Write(_memory, Position, value);
Position += Marshal.SizeOf<T>();
}
}
}