From 41213e0c959b4b11e3059b60ec5248b31024d236 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 13 Jul 2025 19:09:58 -0400 Subject: Expose analysis' system call type and name retrieval Previously we only really had a way to access the platform system call information, this was missing the system call information found in type libraries Fixes https://github.com/Vector35/binaryninja-api/issues/7089 --- binaryninjaapi.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index cb2d3632..85dedca7 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -6425,6 +6425,8 @@ namespace BinaryNinja { void UndefineType(const std::string& id); void UndefineUserType(const QualifiedName& name); void RenameType(const QualifiedName& oldName, const QualifiedName& newName); + Ref GetSystemCallType(Platform* platform, uint32_t id); + std::string GetSystemCallName(Platform* platform, uint32_t id); void RegisterPlatformTypes(Platform* platform); -- cgit v1.3.1