Added IOCTL skeletons.

This commit is contained in:
2015-10-05 21:20:25 +01:00
parent 1afeb5e545
commit 99d115b8dc
12 changed files with 301 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace DiscImageChef.Devices
{
public class Enums
{
public enum ScsiCommands : byte
{
Inquiry = 0x12
}
}
}