Fix unsigned vs. signed problem

This commit is contained in:
Michael D
2017-12-20 18:41:50 +01:00
parent ff2afc4593
commit b030712b38
3 changed files with 12 additions and 12 deletions

View File

@@ -166,10 +166,10 @@ namespace DiscImageChef.Devices.Windows
public byte DeviceTypeModifier;
[MarshalAs(UnmanagedType.U1)] public bool RemovableMedia;
[MarshalAs(UnmanagedType.U1)] public bool CommandQueueing;
public uint VendorIdOffset;
public uint ProductIdOffset;
public uint ProductRevisionOffset;
public uint SerialNumberOffset;
public int VendorIdOffset;
public int ProductIdOffset;
public int ProductRevisionOffset;
public int SerialNumberOffset;
public StorageBusType BusType;
public uint RawPropertiesLength;
public byte[] RawDeviceProperties;