Override Marshal.SizeOf in Helpers and use it instead of System's.

This commit is contained in:
2019-03-01 07:35:22 +00:00
parent 0ec558da55
commit e14c19279a
116 changed files with 1138 additions and 1182 deletions

View File

@@ -41,17 +41,17 @@ namespace DiscImageChef.DiscImages
{
public partial class Dim
{
public string Name => "DIM Disk Image";
public Guid Id => new Guid("0240B7B1-E959-4CDC-B0BD-386D6E467B88");
public ImageInfo Info => imageInfo;
public string Author => "Natalia Portillo";
public string Format => "DIM disk image";
public List<Partition> Partitions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public List<Track> Tracks =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public List<Session> Sessions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public string Name => "DIM Disk Image";
public Guid Id => new Guid("0240B7B1-E959-4CDC-B0BD-386D6E467B88");
public ImageInfo Info => imageInfo;
public string Author => "Natalia Portillo";
public string Format => "DIM disk image";
public List<DumpHardwareType> DumpHardware => null;
public CICMMetadataType CicmMetadata => null;
}