| 12345678910111213141516171819202122232425 |
- using ChocolArm64.Memory;
- using System.Runtime.InteropServices;
- namespace Ryujinx.HLE.Utilities
- {
- class StructWriter
- {
- private MemoryManager Memory;
- public long Position { get; private set; }
- public StructWriter(MemoryManager Memory, long Position)
- {
- this.Memory = Memory;
- this.Position = Position;
- }
- public void Write<T>(T Value) where T : struct
- {
- MemoryHelper.Write(Memory, Position, Value);
- Position += Marshal.SizeOf<T>();
- }
- }
- }
|