diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-07-13 01:42:49 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-07-13 01:42:49 -0400 |
| commit | 8fcc840c79174728ef96afa0ff37713e74311d51 (patch) | |
| tree | 0b904d5fab8dc112c55e3757cb7385d09a7a1475 | |
| parent | c3e5c23d9f71fbb4020fe4f71a01b10734d93946 (diff) | |
Add token types for hex dump
| -rw-r--r-- | binaryninjacore.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 223b9fac..a257d0d0 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -164,6 +164,10 @@ extern "C" FunctionAttributeToken = 13, ArgumentTypeToken = 14, ArgumentNameToken = 15, + HexDumpByteValueToken = 16, + HexDumpSkippedByteToken = 17, + HexDumpInvalidByteToken = 18, + HexDumpTextToken = 19, // The following are output by the analysis system automatically, these should // not be used directly by the architecture plugins |
