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

10 lines
287 B
C#
Raw Normal View History

2020-02-27 00:33:26 +00:00
namespace Aaru.Devices.Remote
{
public class Consts
{
2020-02-29 18:03:35 +00:00
public const uint RemoteId = 0x52434944; // "DICR"
public const uint PacketId = 0x544B4350; // "PCKT"
public const int PacketVersion = 1;
public const int MaxProtocol = 1;
}
}