| 180 | |
| 181 | |
| 182 | LinearViewObjectIdentifier LinearViewObject::GetIdentifier() const |
| 183 | { |
| 184 | BNLinearViewObjectIdentifier id = BNGetLinearViewObjectIdentifier(m_object); |
| 185 | LinearViewObjectIdentifier result; |
| 186 | result.name = id.name; |
| 187 | result.type = id.type; |
| 188 | result.start = id.start; |
| 189 | result.end = id.end; |
| 190 | BNFreeLinearViewObjectIdentifier(&id); |
| 191 | return result; |
| 192 | } |
| 193 | |
| 194 | |
| 195 | uint64_t LinearViewObject::GetOrderingIndexTotal() const |
no outgoing calls
no test coverage detected