namespace X86Disassembler.PE;
///
/// Represents an imported function in a PE file
///
public class ImportedFunction
{
public string Name; // Function name
public ushort Hint; // Hint value
public bool IsOrdinal; // True if imported by ordinal
public ushort Ordinal; // Ordinal value (if imported by ordinal)
public uint ThunkRVA; // RVA of the thunk for this function
///
/// Initializes a new instance of the ImportedFunction class
///
public ImportedFunction()
{
// Initialize string field to avoid nullability warning
Name = string.Empty;
}
}