Files
Aaru/DiscImageChef.Devices/Remote/Consts.cs

9 lines
236 B
C#
Raw Normal View History

namespace DiscImageChef.Devices.Remote
{
public class Consts
{
2019-10-12 22:13:33 +01:00
public const ulong PacketId = 0x6873678065677584; // "DICPACKT"
public const int PacketVersion = 1;
public const int MaxProtocol = 1;
}
}