From a45917bce4f35792d9cf1943cf3316e12ea55523 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Sun, 18 Mar 2018 14:47:17 -0400 Subject: Add api for getting total string output size of QualifiedName object --- binaryninjaapi.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 2d7e2ccf..d0c19e7a 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -680,8 +680,10 @@ namespace BinaryNinja void erase(std::vector::iterator i); void clear(); void push_back(const std::string& name); + // Returns count of names size_t size() const; - + // Returns size of output string + size_t StringSize() const; std::string GetString() const; BNQualifiedName GetAPIObject() const; -- cgit v1.3.1