16#ifndef LIEF_PE_DELAY_IMPORT_H
17#define LIEF_PE_DELAY_IMPORT_H
43 using entries_t = std::vector<std::unique_ptr<DelayImportEntry>>;
50 name_(std::move(
name))
76 const std::string&
name()
const {
80 name_ = std::move(
name);
94 uint32_t
iat()
const {
107 names_table_ = value;
155 uint32_t attribute_ = 0;
157 uint32_t handle_ = 0;
159 uint32_t names_table_ = 0;
160 uint32_t bound_iat_ = 0;
161 uint32_t unload_iat_ = 0;
162 uint32_t timestamp_ = 0;
DelayImport & operator=(DelayImport other)
Definition DelayImport.hpp:56
uint32_t uiat() const
RVA of the unload delay-load import address table or 0 if the table does not exist.
Definition DelayImport.hpp:125
uint32_t timestamp() const
The timestamp of the DLL to which this image has been bound.
Definition DelayImport.hpp:133
~DelayImport() override=default
void name(std::string name)
Definition DelayImport.hpp:79
void timestamp(uint32_t value)
Definition DelayImport.hpp:136
DelayImport(const details::delay_imports &import, PE_TYPE type)
it_const_entries entries() const
Iterator over the DelayImport's entries (DelayImportEntry).
Definition DelayImport.hpp:146
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:86
std::vector< std::unique_ptr< DelayImportEntry > > entries_t
Definition DelayImport.hpp:43
DelayImport(const DelayImport &other)
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:103
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:112
void accept(Visitor &visitor) const override
void biat(uint32_t value)
Definition DelayImport.hpp:115
void attribute(uint32_t hdl)
Definition DelayImport.hpp:71
friend class Builder
Definition DelayImport.hpp:40
const_ref_iterator< const entries_t &, const DelayImportEntry * > it_const_entries
Definition DelayImport.hpp:45
it_entries entries()
Iterator over the DelayImport's entries (DelayImportEntry).
Definition DelayImport.hpp:141
void iat(uint32_t iat)
Definition DelayImport.hpp:97
friend class Parser
Definition DelayImport.hpp:39
DelayImport(std::string name)
Definition DelayImport.hpp:49
uint32_t attribute() const
According to the official PE specifications, this value is reserved and should be set to 0.
Definition DelayImport.hpp:68
void names_table(uint32_t value)
Definition DelayImport.hpp:106
const std::string & name() const
Return the library's name (e.g. kernel32.dll).
Definition DelayImport.hpp:76
uint32_t iat() const
RVA of the delay-load import address table.
Definition DelayImport.hpp:94
DelayImport(DelayImport &&) noexcept=default
ref_iterator< entries_t &, DelayImportEntry * > it_entries
Definition DelayImport.hpp:44
void handle(uint32_t hdl)
Definition DelayImport.hpp:89
void swap(DelayImport &other)
void uiat(uint32_t value)
Definition DelayImport.hpp:128
Definition Visitor.hpp:210
Iterator which returns reference on container's values.
Definition iterators.hpp:46
Definition DataDirectory.hpp:37
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
PE_TYPE
Definition PE/enums.hpp:22
@ PE32
32bits
Definition PE/enums.hpp:23
LIEF namespace.
Definition Abstract/Binary.hpp:40
ref_iterator< CT, U, typename decay_t< CT >::const_iterator > const_ref_iterator
Iterator which return const ref on container's values.
Definition iterators.hpp:257
#define LIEF_API
Definition visibility.h:41