mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-04 05:35:52 +00:00
* Include but mark inactive drives (fixes #87) * Add more checks for the active flag * Force users to choose on dump * Fix quotes * Update SolidShield 1 * Select first active by default * Add TODO * Add dumping progress indicator * Clamp runtime * Add first textfile scans; EA CdKey * Slightly better executable detection * Better file type detection * Get as much into magic number checks as possible * Nicer formatting * Trailing slash * Add back for benefit of the doubt * Remove dead code * Safer cabinet scanning * Remove iXcomp; Add Unshield * Fix build, add more comments * Post-merge cleanup * Add a new log line * Make protection scan mechanics easier to see * Add a space
23 lines
740 B
C#
23 lines
740 B
C#
namespace DICUI.External.Unshield
|
|
{
|
|
public class VolumeHeader
|
|
{
|
|
public uint DataOffset;
|
|
public uint DataOffsetHigh;
|
|
public uint FirstFileIndex;
|
|
public uint LastFileIndex;
|
|
public uint FirstFileOffset;
|
|
public uint FirstFileOffsetHigh;
|
|
public uint FirstFileSizeExpanded;
|
|
public uint FirstFileSizeExpandedHigh;
|
|
public uint FirstFileSizeCompressed;
|
|
public uint FirstFileSizeCompressedHigh;
|
|
public uint LastFileOffset;
|
|
public uint LastFileOffsetHigh;
|
|
public uint LastFileSizeExpanded;
|
|
public uint LastFileSizeExpandedHigh;
|
|
public uint LastFileSizeCompressed;
|
|
public uint LastFileSizeCompressedHigh;
|
|
}
|
|
}
|