| 1037 | } |
| 1038 | |
| 1039 | void PeParser::setDefaultFileAlignment() |
| 1040 | { |
| 1041 | if (isPE32()) |
| 1042 | { |
| 1043 | pNTHeader32->OptionalHeader.FileAlignment = FileAlignmentConstant; |
| 1044 | } |
| 1045 | else |
| 1046 | { |
| 1047 | pNTHeader64->OptionalHeader.FileAlignment = FileAlignmentConstant; |
| 1048 | } |
| 1049 | } |
| 1050 | |
| 1051 | bool PeFileSectionSortByPointerToRawData(const PeFileSection& d1, const PeFileSection& d2) |
| 1052 | { |
no outgoing calls
no test coverage detected