LIEF: Library to Instrument Executable Formats Version 0.16.0
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
16#ifndef LIEF_PE_DELAY_IMPORT_H
17#define LIEF_PE_DELAY_IMPORT_H
42 using entries_t = std::vector<DelayImportEntry>;
43 using it_entries = ref_iterator<entries_t&>;
44 using it_const_entries = const_ref_iterator<const entries_t&>;
47 DelayImport(
const details::delay_imports&
import, PE_TYPE type);
49 name_(std::move(name))
55 DelayImport&
operator=(
const DelayImport&) =
default;
58 DelayImport& operator=(DelayImport&&) noexcept = default;
60 void swap(DelayImport& other);
61 uint32_t attribute()
const {
70 const std::string&
name()
const {
75 void name(std::string name) {
76 name_ = std::move(name);
88 uint32_t
iat()
const {
93 void iat(uint32_t iat) {
103 names_table_ = value;
105 uint32_t
biat()
const {
114 uint32_t
uiat()
const {
140 it_const_entries
entries()
const {
146 void accept(Visitor& visitor)
const override;
151 uint32_t attribute_ = 0;
153 uint32_t handle_ = 0;
155 uint32_t names_table_ = 0;
156 uint32_t bound_iat_ = 0;
157 uint32_t unload_iat_ = 0;
158 uint32_t timestamp_ = 0;
Class that represents a PE delayed import.
Definition DelayImport.hpp:36
DelayImport(const DelayImport &)=default
uint32_t uiat() const
RVA of the unload delay-load import address table or 0 if the table does not exist.
Definition DelayImport.hpp:121
uint32_t timestamp() const
The timestamp of the DLL to which this image has been bound.
Definition DelayImport.hpp:129
~DelayImport() override=default
void name(std::string name)
Definition DelayImport.hpp:75
void timestamp(uint32_t value)
Definition DelayImport.hpp:132
DelayImport(const details::delay_imports &import, PE_TYPE type)
it_const_entries entries() const
Iterator over the DelayImport's entries (DelayImportEntry)
Definition DelayImport.hpp:142
uint32_t handle() const
The RVA of the module handle (in the .data section) It is used for storage by the routine that is sup...
Definition DelayImport.hpp:82
uint32_t names_table() const
RVA of the delay-load import names table. The content of this table has the layout as the Import look...
Definition DelayImport.hpp:99
friend std::ostream & operator<<(std::ostream &os, const DelayImport &entry)
uint32_t biat() const
RVA of the bound delay-load import address table or 0 if the table does not exist.
Definition DelayImport.hpp:108
void accept(Visitor &visitor) const override
void biat(uint32_t value)
Definition DelayImport.hpp:111
void attribute(uint32_t hdl)
Definition DelayImport.hpp:67
it_entries entries()
Iterator over the DelayImport's entries (DelayImportEntry)
Definition DelayImport.hpp:137
void iat(uint32_t iat)
Definition DelayImport.hpp:93
DelayImport(std::string name)
Definition DelayImport.hpp:48
DelayImport & operator=(const DelayImport &)=default
void names_table(uint32_t value)
Definition DelayImport.hpp:102
const std::string & name() const
Return the library's name (e.g. kernel32.dll)
Definition DelayImport.hpp:72
uint32_t iat() const
RVA of the delay-load import address table.
Definition DelayImport.hpp:90
DelayImport(DelayImport &&) noexcept=default
void handle(uint32_t hdl)
Definition DelayImport.hpp:85
void uiat(uint32_t value)
Definition DelayImport.hpp:124
Definition CodeIntegrity.hpp:26
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
PE_TYPE
Definition PE/enums.hpp:680
LIEF namespace.
Definition Abstract/Binary.hpp:36
#define LIEF_API
Definition visibility.h:41