| 883 | } |
| 884 | |
| 885 | DWORD_PTR PeParser::getStandardImagebase() |
| 886 | { |
| 887 | if (isPE32()) |
| 888 | { |
| 889 | return pNTHeader32->OptionalHeader.ImageBase; |
| 890 | } |
| 891 | else |
| 892 | { |
| 893 | return pNTHeader64->OptionalHeader.ImageBase; |
| 894 | } |
| 895 | } |
| 896 | |
| 897 | int PeParser::convertRVAToOffsetVectorIndex(DWORD_PTR dwRVA) |
| 898 | { |
nothing calls this directly
no outgoing calls
no test coverage detected