Package ghidra.app.util.bin.format.pe
Class ExportInfo
java.lang.Object
ghidra.app.util.bin.format.pe.ExportInfo
A class to hold the information extracted from a
export data directory.
NOTE:
This class is simply a storage class created for
parsing the PE header data structures.
It does not map back to a PE data data structure.
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the adjusted address where the export occurs.Returns a comment string containing extra information about the export.getName()Returns the name of the export.intReturns the ordinal value of the export.booleanReturns true of this export is going to be forwarded.toString()
-
Method Details
-
getAddress
public long getAddress()Returns the adjusted address where the export occurs.- Returns:
- the adjusted address where the export occurs
-
getOrdinal
public int getOrdinal()Returns the ordinal value of the export.- Returns:
- the ordinal value of the export
-
getName
Returns the name of the export.- Returns:
- the name of the export
-
getComment
Returns a comment string containing extra information about the export.- Returns:
- a comment string containing extra information about the export
-
isForwarded
public boolean isForwarded()Returns true of this export is going to be forwarded. Generally, a forwarded export just through another export.- Returns:
- true of this export is going to be forwarded
-
toString
-