From fb0cae95a3abe95449f6e53f3edf9324e0dc8efc Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 19 Oct 2015 00:32:48 +0100 Subject: [PATCH] Added ATA/ATAPI IDENTIFY DEVICE disk tags. --- ATA.cs | 2 -- ChangeLog | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ATA.cs b/ATA.cs index b0e87462b..23bcd173d 100644 --- a/ATA.cs +++ b/ATA.cs @@ -1862,8 +1862,6 @@ namespace DiscImageChef.Decoders return null; } - //IdentifyDevice ATAID = new IdentifyDevice(); - IntPtr ptr = Marshal.AllocHGlobal(512); Marshal.Copy(IdentifyDeviceResponse, 0, ptr, 512); IdentifyDevice ATAID = (IdentifyDevice)Marshal.PtrToStructure(ptr, typeof(IdentifyDevice)); diff --git a/ChangeLog b/ChangeLog index a9bb884d2..2d08ac8ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-10-19 Natalia Portillo + + * ATA.cs: + Added ATA/ATAPI IDENTIFY DEVICE disk tags. + 2015-10-18 Natalia Portillo * BD.cs: