0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-19 16:08:02 +03:00
Files
ParkanPlayground/X86Disassembler/PE/DataDirectory.cs

10 lines
254 B
C#

namespace X86Disassembler.PE;
/// <summary>
/// Represents a data directory in the optional header
/// </summary>
public class DataDirectory
{
public uint VirtualAddress; // RVA of the table
public uint Size; // Size of the table
}