From b6442a914783cb2861ff8d1cd6a3865fed29e0f7 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Tue, 23 Aug 2022 00:34:20 -0400 Subject: DebugInfo: take entire Type for function instead of by-parts --- binaryninjaapi.h | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index a01ab998..3d29520f 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -11927,18 +11927,13 @@ namespace BinaryNinja { std::string fullName; std::string rawName; uint64_t address; - Ref returnType; - std::vector>> parameters; - bool variableParameters; - Ref callingConvention; + Ref type; Ref platform; DebugFunctionInfo(std::string shortName, std::string fullName, std::string rawName, uint64_t address, - Ref returnType, std::vector>> parameters, bool variableParameters, - Ref callingConvention, Ref platform) : + Ref type, Ref platform) : shortName(shortName), - fullName(fullName), rawName(rawName), address(address), returnType(returnType), parameters(parameters), - variableParameters(variableParameters), callingConvention(callingConvention), platform(platform) + fullName(fullName), rawName(rawName), address(address), platform(platform) {} }; -- cgit v1.3.1