Go to the source code of this file.
Functions | |
void | ParseCode (CSignFile &file, uint32_t imageBase, vma_t entryPoint, const RVAFileTranslator &rva, const Symbols &symbols, const Symbols &exportedSymbols, bool hasRelocation, const RelocationInfos &relocationInfos) |
|
Definition at line 1217 of file code.cpp. References CodeParser::Parse(), and vma_t.
01218 { 01219 CodeParser* p = new CodeParser; 01220 p->Parse(file,imageBase,entryPoint,rva,symbols,exportedSymbols,hasRelocation,relocationInfos); 01221 delete p; 01222 } |