| 2910 | |
| 2911 | |
| 2912 | uint64_t PEView::Read64(uint64_t rva) |
| 2913 | { |
| 2914 | uint64_t ofs = RVAToFileOffset(rva); |
| 2915 | BinaryReader reader(GetParentView(), LittleEndian); |
| 2916 | reader.Seek(ofs); |
| 2917 | return reader.Read64(); |
| 2918 | } |
| 2919 | |
| 2920 | |
| 2921 | // The addr is RVA |
no test coverage detected