Send device open command packet.

This commit is contained in:
2019-10-13 22:29:09 +01:00
parent a83be0d5d6
commit ecad51de73
4 changed files with 147 additions and 54 deletions

View File

@@ -8,4 +8,14 @@ namespace DiscImageChef.Devices.Remote
ResponseListDevices = 3,
CommandOpen = 4
}
public enum DicNopReason : byte
{
OutOfOrder = 0,
NotImplemented = 1,
NotRecognized = 2,
ErrorListDevices = 3,
OpenOk = 4,
OpenError = 5
}
}