MCPcopy Create free account
hub / github.com/d35ha/CallObfuscator / unload_pe

Method unload_pe

src/load.cpp:138–147  ·  view source on GitHub ↗

Unload the specified PE from memory.

Source from the content-addressed store, hash-verified

136
137// Unload the specified PE from memory.
138cobf_error cobf::unload_pe()
139{
140 // Check if already unloaded.
141 if (this->pe_rawf.empty()) return cobf_error::COBF_PE_UNLOADED;
142
143 // Clear everything.
144 this->pe_rawf.clear();
145 this->pe_mods.clear();
146 return cobf_error::COBF_NO_ERROR;
147};
148
149// Get the attributes for the a data table.
150BOOL cobf::get_data_table(size_t data_entry, PVOID* p_table_ptr, size_t& table_size)

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected