diff options
| author | Peter LaFosse <peter@vector35.com> | 2018-07-30 16:21:47 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-07-30 16:21:47 -0400 |
| commit | ca66a9882727821169536f8cdc8e2108492ea191 (patch) | |
| tree | 959e08e408483071c02b913beb488c78e2d4ae35 /binaryninjacore.h | |
| parent | 30bbb5a8a18183e8e7921ddd047c4cdd14c360ea (diff) | |
Adding support for namespaces
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index cf84fdc5..c7bcb187 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -997,12 +997,16 @@ extern "C" bool (*navigate)(void* ctxt, const char* view, uint64_t offset); }; - struct BNQualifiedName + struct BNNameList { char** name; + char* join; size_t nameCount; }; + typedef BNNameList BNQualifiedName; + typedef BNNameList BNNameSpace; + struct BNBinaryDataNotification { void* context; |
