[FEATURE] In PEFile : added wrapper function for getDelayedImports

This commit is contained in:
hasherezade
2015-03-12 22:26:52 +01:00
parent 065cb9ed0c
commit dbb65cc60f
+5
View File
@@ -103,6 +103,11 @@ public:
{
return dynamic_cast<ImportDirWrapper*>(getWrapper(PEFile::WR_DIR_ENTRY + pe::DIR_IMPORT));
}
DelayImpDirWrapper* getDelayedImports()
{
return dynamic_cast<DelayImpDirWrapper*>(getWrapper(PEFile::WR_DIR_ENTRY + pe::DIR_DELAY_IMPORT));
}
BufferView* createSectionView(size_t secNum);
//---