| 688 | |
| 689 | |
| 690 | Ref<Type> Platform::GetFunctionByName(const QualifiedName& name, bool exactMatch) |
| 691 | { |
| 692 | BNQualifiedName nameObj = name.GetAPIObject(); |
| 693 | BNType* type = BNGetPlatformFunctionByName(m_object, &nameObj, exactMatch); |
| 694 | QualifiedName::FreeAPIObject(&nameObj); |
| 695 | if (!type) |
| 696 | return nullptr; |
| 697 | return new Type(type); |
| 698 | } |
| 699 | |
| 700 | |
| 701 | string Platform::GetSystemCallName(uint32_t n) |
no test coverage detected