| 818 | } |
| 819 | |
| 820 | bool PeParser::readPeSectionFromProcess(DWORD_PTR readOffset, PeFileSection & peFileSection) |
| 821 | { |
| 822 | peFileSection.data = new BYTE[peFileSection.dataSize]; |
| 823 | |
| 824 | return ProcessAccessHelp::readMemoryPartlyFromProcess(readOffset, peFileSection.dataSize, peFileSection.data); |
| 825 | } |
| 826 | |
| 827 | DWORD PeParser::alignValue(DWORD badValue, DWORD alignTo) |
| 828 | { |
nothing calls this directly
no outgoing calls
no test coverage detected