| 2175 | |
| 2176 | |
| 2177 | void BinaryView::DefineDataVariable(uint64_t addr, const Confidence<Ref<Type>>& type) |
| 2178 | { |
| 2179 | BNTypeWithConfidence tc; |
| 2180 | tc.type = type->GetObject(); |
| 2181 | tc.confidence = type.GetConfidence(); |
| 2182 | BNDefineDataVariable(m_object, addr, &tc); |
| 2183 | } |
| 2184 | |
| 2185 | |
| 2186 | void BinaryView::DefineUserDataVariable(uint64_t addr, const Confidence<Ref<Type>>& type) |
no test coverage detected