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

10 lines
282 B
C#
Raw Normal View History

namespace DiscImageChef.Devices.Remote
{
public class Consts
{
2019-10-26 15:34:00 +01:00
public const uint RemoteId = 0x52434944; // "DICR"
public const uint PacketId = 0x544B4350; // "PCKT"
public const int PacketVersion = 1;
public const int MaxProtocol = 1;
}
}