| 2901 | |
| 2902 | |
| 2903 | uint32_t PEView::Read32(uint64_t rva) |
| 2904 | { |
| 2905 | uint64_t ofs = RVAToFileOffset(rva); |
| 2906 | BinaryReader reader(GetParentView(), LittleEndian); |
| 2907 | reader.Seek(ofs); |
| 2908 | return reader.Read32(); |
| 2909 | } |
| 2910 | |
| 2911 | |
| 2912 | uint64_t PEView::Read64(uint64_t rva) |
no test coverage detected