2016-04-12 15:03:47 -07:00
|
|
|
|
namespace SabreTools.Helper
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Intermediate struct for holding and processing rom data
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public struct RomData
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Manufacturer;
|
|
|
|
|
|
public string System;
|
|
|
|
|
|
public int SystemID;
|
|
|
|
|
|
public string Source;
|
|
|
|
|
|
public string URL;
|
|
|
|
|
|
public int SourceID;
|
|
|
|
|
|
public string Game;
|
|
|
|
|
|
public string Name;
|
|
|
|
|
|
public string Type;
|
|
|
|
|
|
public long Size;
|
|
|
|
|
|
public string CRC;
|
|
|
|
|
|
public string MD5;
|
|
|
|
|
|
public string SHA1;
|
2016-05-10 20:55:51 -07:00
|
|
|
|
public DupeType Dupe;
|
2016-04-12 15:03:47 -07:00
|
|
|
|
}
|
2016-05-15 14:34:06 -07:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Intermediate struct for holding DAT information
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public struct DatData
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name;
|
|
|
|
|
|
public string Description;
|
|
|
|
|
|
public string Category;
|
|
|
|
|
|
public string Version;
|
|
|
|
|
|
public string Date;
|
|
|
|
|
|
public string Author;
|
|
|
|
|
|
public string Email;
|
|
|
|
|
|
public string Homepage;
|
|
|
|
|
|
public string Url;
|
|
|
|
|
|
public string Comment;
|
|
|
|
|
|
public string Header;
|
|
|
|
|
|
public ForceMerging ForceMerging;
|
|
|
|
|
|
public ForceNodump ForceNodump;
|
|
|
|
|
|
public ForcePacking ForcePacking;
|
|
|
|
|
|
public OutputFormat OutputFormat;
|
|
|
|
|
|
}
|
2016-04-12 15:03:47 -07:00
|
|
|
|
}
|