using System; using System.Runtime.InteropServices; namespace BurnOutSharp.Models.PortableExecutable { /// /// This file describes the format of the pdb (Program Database) files of the "RSDS" /// or "DS" type which are emitted by Miscrosoft's link.exe from version 7 and above. /// /// [StructLayout(LayoutKind.Sequential)] public class RSDSProgramDatabase { /// /// "RSDS" signature /// public uint Signature; /// /// 16-byte Globally Unique Identifier /// public Guid GUID; /// /// "age" /// public uint Age; /// /// zero terminated UTF8 path and file name /// public string PathAndFileName; } }