mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
35 lines
927 B
C#
35 lines
927 B
C#
|
|
using System;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
namespace BurnOutSharp.Models.PortableExecutable
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 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.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <see href="http://www.godevtool.com/Other/pdb.htm"/>
|
|||
|
|
[StructLayout(LayoutKind.Sequential)]
|
|||
|
|
public class RSDSProgramDatabase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// "RSDS" signature
|
|||
|
|
/// </summary>
|
|||
|
|
public uint Signature;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 16-byte Globally Unique Identifier
|
|||
|
|
/// </summary>
|
|||
|
|
public Guid GUID;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// "age"
|
|||
|
|
/// </summary>
|
|||
|
|
public uint Age;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// zero terminated UTF8 path and file name
|
|||
|
|
/// </summary>
|
|||
|
|
public string PathAndFileName;
|
|||
|
|
}
|
|||
|
|
}
|