2019-10-12 19:26:28 +01:00
|
|
|
using System.Runtime.InteropServices;
|
2020-02-27 00:33:26 +00:00
|
|
|
using Aaru.CommonTypes.Enums;
|
|
|
|
|
using Aaru.Decoders.ATA;
|
2019-10-12 19:26:28 +01:00
|
|
|
|
2020-02-27 00:33:26 +00:00
|
|
|
namespace Aaru.Devices.Remote
|
2019-10-12 19:26:28 +01:00
|
|
|
{
|
2019-10-12 22:34:27 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketHeader
|
2019-10-12 19:26:28 +01:00
|
|
|
{
|
2019-10-26 15:34:00 +01:00
|
|
|
public uint remote_id;
|
|
|
|
|
public uint packet_id;
|
2019-10-12 19:26:28 +01:00
|
|
|
|
|
|
|
|
public uint len;
|
|
|
|
|
public byte version;
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketType packetType;
|
2019-10-12 19:26:28 +01:00
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
2019-10-12 22:34:27 +01:00
|
|
|
public readonly byte[] spare;
|
2019-10-12 19:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
2019-10-12 22:34:27 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketHello
|
2019-10-12 19:26:28 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-12 19:26:28 +01:00
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
|
|
|
|
|
public string application;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 64)]
|
|
|
|
|
public string version;
|
|
|
|
|
|
|
|
|
|
public byte maxProtocol;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
2019-10-12 22:34:27 +01:00
|
|
|
public readonly byte[] spare;
|
2019-10-12 19:26:28 +01:00
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
|
|
|
|
public string sysname;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
|
|
|
|
public string release;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
|
|
|
|
public string machine;
|
|
|
|
|
}
|
2019-10-12 22:34:27 +01:00
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCommandListDevices
|
2019-10-12 22:34:27 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-12 22:34:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResponseListDevices
|
2019-10-12 22:34:27 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public readonly AaruPacketHeader hdr;
|
2019-10-12 22:34:27 +01:00
|
|
|
public readonly ushort devices;
|
|
|
|
|
}
|
2019-10-13 20:54:10 +01:00
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketNop
|
2019-10-13 20:54:10 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
|
|
|
|
public AaruNopReason reasonCode;
|
2019-10-13 20:54:10 +01:00
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
|
|
|
public readonly byte[] spare;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
|
|
|
|
public string reason;
|
2019-10-13 21:19:21 +01:00
|
|
|
|
|
|
|
|
public int errno;
|
2019-10-13 20:54:10 +01:00
|
|
|
}
|
2019-10-13 21:59:19 +01:00
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCommandOpenDevice
|
2019-10-13 21:59:19 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-13 21:59:19 +01:00
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)]
|
|
|
|
|
public string device_path;
|
|
|
|
|
}
|
2019-10-14 00:42:13 +01:00
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdScsi
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint cdb_len;
|
|
|
|
|
public uint buf_len;
|
|
|
|
|
public int direction;
|
|
|
|
|
public uint timeout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResScsi
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint sense_len;
|
|
|
|
|
public uint buf_len;
|
|
|
|
|
public uint duration;
|
|
|
|
|
public uint sense;
|
2019-10-17 22:15:01 +01:00
|
|
|
public uint error_no;
|
2019-10-14 00:42:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdAtaChs
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint buf_len;
|
|
|
|
|
public AtaRegistersChs registers;
|
|
|
|
|
public byte protocol;
|
|
|
|
|
public byte transferRegister;
|
2019-10-19 03:11:27 +01:00
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool transferBlocks;
|
2019-10-14 00:42:13 +01:00
|
|
|
public byte spare;
|
|
|
|
|
public uint timeout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResAtaChs
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint buf_len;
|
|
|
|
|
public AtaErrorRegistersChs registers;
|
|
|
|
|
public uint duration;
|
|
|
|
|
public uint sense;
|
2019-10-17 22:15:01 +01:00
|
|
|
public uint error_no;
|
2019-10-14 00:42:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdAtaLba28
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint buf_len;
|
|
|
|
|
public AtaRegistersLba28 registers;
|
|
|
|
|
public byte protocol;
|
|
|
|
|
public byte transferRegister;
|
2019-10-19 03:11:27 +01:00
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool transferBlocks;
|
2019-10-14 00:42:13 +01:00
|
|
|
public byte spare;
|
|
|
|
|
public uint timeout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResAtaLba28
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint buf_len;
|
|
|
|
|
public AtaErrorRegistersLba28 registers;
|
|
|
|
|
public uint duration;
|
|
|
|
|
public uint sense;
|
2019-10-17 22:15:01 +01:00
|
|
|
public uint error_no;
|
2019-10-14 00:42:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdAtaLba48
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint buf_len;
|
|
|
|
|
public AtaRegistersLba48 registers;
|
|
|
|
|
public byte protocol;
|
|
|
|
|
public byte transferRegister;
|
2019-10-19 03:11:27 +01:00
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool transferBlocks;
|
2019-10-14 00:42:13 +01:00
|
|
|
public byte spare;
|
|
|
|
|
public uint timeout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResAtaLba48
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint buf_len;
|
|
|
|
|
public AtaErrorRegistersLba48 registers;
|
|
|
|
|
public uint duration;
|
|
|
|
|
public uint sense;
|
2019-10-17 22:15:01 +01:00
|
|
|
public uint error_no;
|
2019-10-14 00:42:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdSdhci
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public MmcCommands command;
|
|
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool write;
|
|
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool application;
|
|
|
|
|
public MmcFlags flags;
|
|
|
|
|
public uint argument;
|
|
|
|
|
public uint block_size;
|
|
|
|
|
public uint blocks;
|
|
|
|
|
public uint buf_len;
|
|
|
|
|
public uint timeout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResSdhci
|
2019-10-14 00:42:13 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 00:42:13 +01:00
|
|
|
public uint buf_len;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
|
|
|
|
|
public uint[] response;
|
|
|
|
|
|
|
|
|
|
public uint duration;
|
|
|
|
|
public uint sense;
|
2019-10-17 22:15:01 +01:00
|
|
|
public uint error_no;
|
2019-10-14 00:42:13 +01:00
|
|
|
}
|
2019-10-14 01:02:25 +01:00
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdGetDeviceType
|
2019-10-14 01:02:25 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:02:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResGetDeviceType
|
2019-10-14 01:02:25 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:27:05 +01:00
|
|
|
public DeviceType device_type;
|
2019-10-14 01:02:25 +01:00
|
|
|
}
|
2019-10-14 01:11:20 +01:00
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdGetSdhciRegisters
|
2019-10-14 01:11:20 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:11:20 +01:00
|
|
|
}
|
|
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResGetSdhciRegisters
|
2019-10-14 01:11:20 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:11:20 +01:00
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool isSdhci;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
|
|
|
|
|
public byte[] csd;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
|
|
|
|
|
public byte[] cid;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
|
|
|
|
|
public byte[] ocr;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
|
|
|
|
|
public byte[] scr;
|
2019-10-18 00:27:53 +01:00
|
|
|
|
|
|
|
|
public uint csd_len;
|
|
|
|
|
public uint cid_len;
|
|
|
|
|
public uint ocr_len;
|
|
|
|
|
public uint scr_len;
|
2019-10-14 01:11:20 +01:00
|
|
|
}
|
2019-10-14 01:27:05 +01:00
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdGetUsbData
|
2019-10-14 01:27:05 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResGetUsbData
|
2019-10-14 01:27:05 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:27:05 +01:00
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool isUsb;
|
|
|
|
|
public ushort descLen;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 65536)]
|
|
|
|
|
public byte[] descriptors;
|
|
|
|
|
|
|
|
|
|
public ushort idVendor;
|
|
|
|
|
public ushort idProduct;
|
|
|
|
|
|
2019-10-18 23:41:58 +01:00
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
2019-10-14 01:27:05 +01:00
|
|
|
public string manufacturer;
|
|
|
|
|
|
2019-10-18 23:41:58 +01:00
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
2019-10-14 01:27:05 +01:00
|
|
|
public string product;
|
|
|
|
|
|
2019-10-18 23:41:58 +01:00
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
2019-10-14 01:27:05 +01:00
|
|
|
public string serial;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdGetFireWireData
|
2019-10-14 01:27:05 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResGetFireWireData
|
2019-10-14 01:27:05 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:27:05 +01:00
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool isFireWire;
|
|
|
|
|
public uint idModel;
|
|
|
|
|
public uint idVendor;
|
|
|
|
|
public ulong guid;
|
|
|
|
|
|
2019-10-18 23:41:58 +01:00
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
2019-10-14 01:27:05 +01:00
|
|
|
public string vendor;
|
|
|
|
|
|
2019-10-18 23:41:58 +01:00
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
|
2019-10-14 01:27:05 +01:00
|
|
|
public string model;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdGetPcmciaData
|
2019-10-14 01:27:05 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
2019-10-26 17:14:58 +01:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResGetPcmciaData
|
2019-10-14 01:27:05 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-14 01:27:05 +01:00
|
|
|
[MarshalAs(UnmanagedType.U1)] public bool isPcmcia;
|
|
|
|
|
public ushort cis_len;
|
|
|
|
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 65536)]
|
|
|
|
|
public byte[] cis;
|
|
|
|
|
}
|
2019-10-26 15:47:36 +01:00
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdClose
|
2019-10-26 15:47:36 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-26 15:47:36 +01:00
|
|
|
}
|
2019-10-26 17:39:50 +01:00
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketCmdAmIRoot
|
2019-10-26 17:39:50 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-10-26 17:39:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
2020-02-27 22:42:21 +00:00
|
|
|
public struct AaruPacketResAmIRoot
|
2019-10-26 17:39:50 +01:00
|
|
|
{
|
2020-02-27 22:42:21 +00:00
|
|
|
public AaruPacketHeader hdr;
|
2019-11-01 01:10:34 +00:00
|
|
|
public uint am_i_root;
|
2019-10-26 17:39:50 +01:00
|
|
|
}
|
2019-10-12 19:26:28 +01:00
|
|
|
}
|