PEImportSymbol

data class PEImportSymbol(val name: String, val file: String, val ordinal: UShort? = null, val isOrdinal: Boolean = false) : ImportSymbol(source)

Implementation of import symbol for PE format

Constructors

Link copied to clipboard
constructor(name: String, file: String, ordinal: UShort? = null, isOrdinal: Boolean = false)

Properties

Link copied to clipboard
open override val fields: Map<String, Any>
Link copied to clipboard
open override val file: String

The DLL file name that contains this import symbol

Link copied to clipboard
val isOrdinal: Boolean = false

Whether this symbol is imported by ordinal

Link copied to clipboard
open override val name: String

The name of the import symbol

Link copied to clipboard
val ordinal: UShort? = null

The ordinal number of the import symbol (if imported by ordinal)