mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
21 lines
418 B
C#
21 lines
418 B
C#
namespace DiscImageChef.Devices.Remote
|
|
{
|
|
public enum DicPacketType : sbyte
|
|
{
|
|
Nop = -1,
|
|
Hello = 1,
|
|
CommandListDevices = 2,
|
|
ResponseListDevices = 3,
|
|
CommandOpen = 4
|
|
}
|
|
|
|
public enum DicNopReason : byte
|
|
{
|
|
OutOfOrder = 0,
|
|
NotImplemented = 1,
|
|
NotRecognized = 2,
|
|
ErrorListDevices = 3,
|
|
OpenOk = 4,
|
|
OpenError = 5
|
|
}
|
|
} |