| 1049 | } |
| 1050 | |
| 1051 | bool PeFileSectionSortByPointerToRawData(const PeFileSection& d1, const PeFileSection& d2) |
| 1052 | { |
| 1053 | return d1.sectionHeader.PointerToRawData < d2.sectionHeader.PointerToRawData; |
| 1054 | } |
| 1055 | |
| 1056 | bool PeFileSectionSortByVirtualAddress(const PeFileSection& d1, const PeFileSection& d2) |
| 1057 | { |
nothing calls this directly
no outgoing calls
no test coverage detected