mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
11 lines
218 B
C#
11 lines
218 B
C#
namespace DiscImageChef.Devices.Remote
|
|
{
|
|
public enum DicPacketType : sbyte
|
|
{
|
|
Nop = -1,
|
|
Hello = 1,
|
|
CommandListDevices = 2,
|
|
ResponseListDevices = 3,
|
|
CommandOpen = 4
|
|
}
|
|
} |