Enlarge ATA command buffer size in Windows to 256 sectors. Fixes #650

This commit is contained in:
2021-09-06 03:28:53 +01:00
parent 7c384310f0
commit 6429c784e6

View File

@@ -114,7 +114,7 @@ namespace Aaru.Devices.Windows
public AtaPassThroughEx aptd;
public uint filler;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 64 * 512)]
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256 * 512)]
public byte[] dataBuffer;
}