mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Corrected previously unknown Lisa tag values.
This commit is contained in:
@@ -206,13 +206,17 @@ namespace DiscImageChef.Filesystems.LisaFS
|
|||||||
struct Lisa_Tag
|
struct Lisa_Tag
|
||||||
{
|
{
|
||||||
/// <summary>0x00 Unknown</summary>
|
/// <summary>0x00 Unknown</summary>
|
||||||
public UInt32 unknown1;
|
public UInt16 unknown;
|
||||||
/// <summary>0x04 File ID</summary>
|
/// <summary>0x02 File type</summary>
|
||||||
public UInt16 fileID;
|
public UInt16 fileType;
|
||||||
/// <summary>0x06 Unknown</summary>
|
/// <summary>0x04 File ID. Negative numbers are extents for the file with same absolute value number</summary>
|
||||||
public UInt16 unknown2;
|
public Int16 fileID;
|
||||||
/// <summary>0x08 Unknown</summary>
|
/// <summary>0x06 Relative block</summary>
|
||||||
public UInt32 unknown3;
|
public UInt16 relBlock;
|
||||||
|
/// <summary>0x08 Next block for this file. 0x8000 bit seems always set, 0x07FF means this is last block</summary>
|
||||||
|
public UInt16 nextBlock;
|
||||||
|
/// <summary>0x0A Previous block for this file. 0x07FF means this is first block.</summary>
|
||||||
|
public UInt16 prevBlock;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user