Files
Aaru/DiscImageChef.Devices/Linux/Enums.cs

21 lines
528 B
C#
Raw Normal View History

2015-10-05 21:20:25 +01:00
using System;
namespace DiscImageChef.Devices.Linux
{
static class Enums
{
internal const int O_RDONLY = 0;
internal const int O_RDWR = 2;
internal const ulong SG_GET_VERSION_NUM = 0x2282;
internal const ulong SG_IO = 0x2285;
internal const int SG_DXFER_FROM_DEV = -3;
internal const uint SG_INFO_OK_MASK = 0x1;
internal const uint SG_INFO_OK = 0x0; /* no sense, host nor driver "noise" */
internal const uint SG_INFO_CHECK = 0x1;
}
}