From cd9eea2fdbd51c25a9f17435c561b6fe9377960f Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 15 Oct 2025 13:07:19 -0400 Subject: Add GetTypeCount API Add note about type_names not being sorted anymore --- binaryninjacore.h | 1 + 1 file changed, 1 insertion(+) (limited to 'binaryninjacore.h') diff --git a/binaryninjacore.h b/binaryninjacore.h index c6fa691d..60850f38 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -5642,6 +5642,7 @@ extern "C" BINARYNINJACOREAPI bool BNTypeContainerGetTypeIds(BNTypeContainer* container, char*** typeIds, size_t* count); BINARYNINJACOREAPI bool BNTypeContainerGetTypeNames(BNTypeContainer* container, BNQualifiedName** typeNames, size_t* count); BINARYNINJACOREAPI bool BNTypeContainerGetTypeNamesAndIds(BNTypeContainer* container, char*** typeIds, BNQualifiedName** typeNames, size_t* count); + BINARYNINJACOREAPI size_t BNTypeContainerGetTypeCount(BNTypeContainer* container); BINARYNINJACOREAPI bool BNTypeContainerParseTypeString(BNTypeContainer* container, const char* source, bool importDepencencies, BNQualifiedNameAndType* result, BNTypeParserError** errors, size_t* errorCount -- cgit v1.3.1