From 4baa6fc4add2b1d9ff32d8eba67621dfdb1cbfd4 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 28 Apr 2015 02:31:19 -0400 Subject: Implement renaming of functions with persistence and undo --- binaryninjaapi.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index ecacba34..ce5e95ae 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -155,6 +155,9 @@ namespace BinaryNinja bool LogToFile(BNLogLevel minimumLevel, const std::string& path, bool append = false); void CloseLogs(); + std::string EscapeString(const std::string& s); + std::string UnescapeString(const std::string& s); + class DataBuffer { BNDataBuffer* m_buffer; @@ -397,6 +400,8 @@ namespace BinaryNinja std::string GetFullName() const; std::string GetRawName() const; uint64_t GetAddress() const; + bool IsAutoDefined() const; + void SetAutoDefined(bool val); }; struct ReferenceSource -- cgit v1.3.1