mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 03:41:18 +03:00
24 lines
713 B
C#
24 lines
713 B
C#
namespace X86Disassembler.PE;
|
|
|
|
/// <summary>
|
|
/// Represents an exported function in a PE file
|
|
/// </summary>
|
|
public class ExportedFunction
|
|
{
|
|
public string Name; // Function name
|
|
public ushort Ordinal; // Function ordinal
|
|
public uint AddressRva; // Function RVA
|
|
public bool IsForwarder; // True if this is a forwarder
|
|
public string ForwarderName; // Name of the forwarded function
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the ExportedFunction class
|
|
/// </summary>
|
|
public ExportedFunction()
|
|
{
|
|
// Initialize string fields to avoid nullability warnings
|
|
Name = string.Empty;
|
|
ForwarderName = string.Empty;
|
|
}
|
|
}
|