| 4865 | |
| 4866 | |
| 4867 | bool BinaryView::GetAddressInput(uint64_t& result, const string& prompt, const string& title) |
| 4868 | { |
| 4869 | uint64_t currentAddress = 0; |
| 4870 | if (m_file) |
| 4871 | currentAddress = m_file->GetCurrentOffset(); |
| 4872 | return BNGetAddressInput(&result, prompt.c_str(), title.c_str(), m_object, currentAddress); |
| 4873 | } |
| 4874 | |
| 4875 | |
| 4876 | bool BinaryView::GetAddressInput(uint64_t& result, const string& prompt, const string& title, uint64_t currentAddress) |
nothing calls this directly
no test coverage detected