LIEF: Library to Instrument Executable Formats Version 0.17.0
|
Class which represents a PE Export entry (cf. PE::Export) More...
#include <ExportEntry.hpp>
Classes | |
struct | forward_information_t |
Public Member Functions | |
ExportEntry ()=default | |
ExportEntry (uint32_t address, bool is_extern, uint16_t ordinal, uint32_t function_rva) | |
ExportEntry (std::string name, uint32_t rva) | |
ExportEntry (const ExportEntry &)=default | |
ExportEntry & | operator= (const ExportEntry &)=default |
ExportEntry (ExportEntry &&)=default | |
ExportEntry & | operator= (ExportEntry &&)=default |
~ExportEntry () override=default | |
std::string | demangled_name () const |
Demangled representation of the symbol or an empty string if it can't be demangled. | |
uint16_t | ordinal () const |
Ordinal value associated with this exported entry. | |
uint32_t | address () const |
Address of the current exported function in the DLL. | |
bool | is_extern () const |
bool | is_forwarded () const |
forward_information_t | forward_information () const |
uint32_t | function_rva () const |
void | ordinal (uint16_t ordinal) |
void | address (uint32_t address) |
void | is_extern (bool is_extern) |
uint64_t | value () const override |
void | value (uint64_t value) override |
void | set_forward_info (std::string lib, std::string function) |
void | accept (Visitor &visitor) const override |
![]() | |
Symbol ()=default | |
Symbol (std::string name) | |
Symbol (std::string name, uint64_t value) | |
Symbol (std::string name, uint64_t value, uint64_t size) | |
Symbol (const Symbol &)=default | |
Symbol & | operator= (const Symbol &)=default |
Symbol (Symbol &&)=default | |
Symbol & | operator= (Symbol &&)=default |
~Symbol () override=default | |
void | swap (Symbol &other) noexcept |
virtual const std::string & | name () const |
Return the symbol's name. | |
virtual std::string & | name () |
virtual void | name (std::string name) |
Set symbol name. | |
virtual uint64_t | size () const |
This size of the symbol (when applicable) | |
virtual void | size (uint64_t value) |
void | accept (Visitor &visitor) const override |
Method so that the visitor can visit us. | |
![]() | |
Object () | |
Object (const Object &other) | |
Object & | operator= (const Object &other) |
template<class T > | |
output_t< T > | as () |
template<class T > | |
output_const_t< T > | as () const |
virtual bool | operator== (const Object &other) const |
virtual bool | operator!= (const Object &other) const |
virtual | ~Object () |
Additional Inherited Members | |
![]() | |
template<class T > | |
using | output_t = add_pointer_t<decay_t<T>> |
template<class T > | |
using | output_const_t = add_pointer_t<add_const_t<decay_t<T>>> |
Class which represents a PE Export entry (cf. PE::Export)
|
default |
|
inline |
|
inline |
References LIEF::PE::LIEF.
|
default |
|
default |
|
overridedefault |
|
overridevirtual |
Implements LIEF::Object.
|
inline |
Address of the current exported function in the DLL.
|
inline |
std::string LIEF::PE::ExportEntry::demangled_name | ( | ) | const |
Demangled representation of the symbol or an empty string if it can't be demangled.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
default |
|
default |
|
inline |
Ordinal value associated with this exported entry.
This value is computed as the index of this entry in the address table plus the ordinal base (Export::ordinal_base)
|
inline |
|
inline |
|
inlineoverridevirtual |
Reimplemented from LIEF::Symbol.
|
inlineoverridevirtual |
Reimplemented from LIEF::Symbol.