diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-02-10 21:52:33 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-02-10 21:52:33 -0500 |
| commit | 8dc0e19037bd9b605ae1df87014b758025d87930 (patch) | |
| tree | 7752875aa933e7da6ba9cd411e000cf0005d849d /binaryninjaapi.cpp | |
| parent | f8687791c32688a78b5e6667b2af9689816e41af (diff) | |
| parent | 3f08a3c209adba9de44f871e2a4cf358a71f59cd (diff) | |
Merge branch 'type_view' into dev
Diffstat (limited to 'binaryninjaapi.cpp')
| -rw-r--r-- | binaryninjaapi.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/binaryninjaapi.cpp b/binaryninjaapi.cpp index 483d7393..6b303bcd 100644 --- a/binaryninjaapi.cpp +++ b/binaryninjaapi.cpp @@ -257,3 +257,12 @@ void BinaryNinja::SetWorkerThreadCount(size_t count) { BNSetWorkerThreadCount(count); } + + +string BinaryNinja::GetUniqueIdentifierString() +{ + char* str = BNGetUniqueIdentifierString(); + string result = str; + BNFreeString(str); + return result; +} |
