mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix unsigned vs. signed problem
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user