| 52 | } |
| 53 | |
| 54 | int PEParser::GetSectionCount() const { |
| 55 | if (!IsValid()) |
| 56 | return -1; |
| 57 | |
| 58 | return _fileHeader->NumberOfSections; |
| 59 | } |
| 60 | |
| 61 | ULONG PEParser::RvaToFileOffset(ULONG rva) const { |
| 62 | auto sections = _sections; |
no outgoing calls
no test coverage detected