| 1054 | } |
| 1055 | |
| 1056 | bool PeFileSectionSortByVirtualAddress(const PeFileSection& d1, const PeFileSection& d2) |
| 1057 | { |
| 1058 | return d1.sectionHeader.VirtualAddress < d2.sectionHeader.VirtualAddress; |
| 1059 | } |
| 1060 | |
| 1061 | void PeParser::alignAllSectionHeaders() |
| 1062 | { |
nothing calls this directly
no outgoing calls
no test coverage detected