From d75066545afdc9b5d0a52bd2518e43f683c671a5 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Thu, 13 Jun 2024 14:13:11 -0400 Subject: Apply stack variables from DWARF --- binaryninjaapi.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index b5ce7010..0dd1b66b 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -16401,11 +16401,14 @@ namespace BinaryNinja { Ref type; Ref platform; std::vector components; + std::vector localVariables; DebugFunctionInfo(std::string shortName, std::string fullName, std::string rawName, uint64_t address, - Ref type, Ref platform, const std::vector& components) : + Ref type, Ref platform, const std::vector& components, + const std::vector& localVariables) : shortName(shortName), fullName(fullName), rawName(rawName), - address(address), platform(platform), components(components) + address(address), platform(platform), components(components), + localVariables(localVariables) {} }; -- cgit v1.3.1