| 2892 | |
| 2893 | |
| 2894 | uint16_t PEView::Read16(uint64_t rva) |
| 2895 | { |
| 2896 | uint64_t ofs = RVAToFileOffset(rva); |
| 2897 | BinaryReader reader(GetParentView(), LittleEndian); |
| 2898 | reader.Seek(ofs); |
| 2899 | return reader.Read16(); |
| 2900 | } |
| 2901 | |
| 2902 | |
| 2903 | uint32_t PEView::Read32(uint64_t rva) |
no test coverage detected