| 2 | #include "PEParser.h" |
| 3 | |
| 4 | PEParser::PEParser(PVOID base) { |
| 5 | _address = reinterpret_cast<PUCHAR>(base); |
| 6 | CheckValidity(); |
| 7 | } |
| 8 | |
| 9 | PEParser::PEParser(const wchar_t* path) { |
| 10 | UNICODE_STRING fileName; |
nothing calls this directly
no test coverage detected