2019-10-12 19:26:28 +01:00
|
|
|
namespace DiscImageChef.Devices.Remote
|
|
|
|
|
{
|
2019-10-13 20:54:10 +01:00
|
|
|
public enum DicPacketType : sbyte
|
2019-10-12 19:26:28 +01:00
|
|
|
{
|
2019-10-13 20:54:10 +01:00
|
|
|
Nop = -1,
|
2019-10-12 22:34:27 +01:00
|
|
|
Hello = 1,
|
|
|
|
|
CommandListDevices = 2,
|
2019-10-13 21:59:19 +01:00
|
|
|
ResponseListDevices = 3,
|
|
|
|
|
CommandOpen = 4
|
2019-10-12 19:26:28 +01:00
|
|
|
}
|
2019-10-13 22:29:09 +01:00
|
|
|
|
|
|
|
|
public enum DicNopReason : byte
|
|
|
|
|
{
|
|
|
|
|
OutOfOrder = 0,
|
|
|
|
|
NotImplemented = 1,
|
|
|
|
|
NotRecognized = 2,
|
|
|
|
|
ErrorListDevices = 3,
|
|
|
|
|
OpenOk = 4,
|
|
|
|
|
OpenError = 5
|
|
|
|
|
}
|
2019-10-12 19:26:28 +01:00
|
|
|
}
|