summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2019-08-28 06:59:45 -0400
committerPeter LaFosse <peter@vector35.com>2019-08-30 14:26:06 -0400
commit4c8271a8aae5897785904adb48c911818f2dd301 (patch)
treed0851270beeea488b32aee4a5c0df2537674ded4 /binaryninjaapi.h
parent29c4896cda6e0933a5acb5402ff9ec4fb9ea7e90 (diff)
Make GetPlatformFunctionByName optionally strip leading underscores when matching
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 7e18a259..cc5ff914 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -4145,7 +4145,7 @@ namespace BinaryNinja
std::map<uint32_t, QualifiedNameAndType> GetSystemCalls();
Ref<Type> GetTypeByName(const QualifiedName& name);
Ref<Type> GetVariableByName(const QualifiedName& name);
- Ref<Type> GetFunctionByName(const QualifiedName& name);
+ Ref<Type> GetFunctionByName(const QualifiedName& name, bool exactMatch = false);
std::string GetSystemCallName(uint32_t n);
Ref<Type> GetSystemCallType(uint32_t n);