mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Cache ISO, HSF and CDI record sizes.
This commit is contained in:
@@ -31,12 +31,15 @@
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
using DiscImageChef.Helpers;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660
|
||||
{
|
||||
const string CDI_MAGIC = "CD-I ";
|
||||
const string CDI_MAGIC = "CD-I ";
|
||||
static readonly int CdiDirectoryRecordSize = Marshal.SizeOf<CdiDirectoryRecord>();
|
||||
static readonly int CdiSystemAreaSize = Marshal.SizeOf<CdiSystemArea>();
|
||||
|
||||
[Flags]
|
||||
enum CdiVolumeFlags : byte
|
||||
|
||||
Reference in New Issue
Block a user