diff options
| -rw-r--r-- | binaryninjacore.h | 1 | ||||
| -rw-r--r-- | python/function.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index cd12c4d1..4128372d 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -256,6 +256,7 @@ extern "C" StructOffsetByteValueToken = 26, StructureHexDumpTextToken = 27, GotoLabelToken = 28, + CommentToken = 29, // The following are output by the analysis system automatically, these should // not be used directly by the architecture plugins CodeSymbolToken = 64, diff --git a/python/function.py b/python/function.py index 15f67b35..fd8f7674 100644 --- a/python/function.py +++ b/python/function.py @@ -2941,6 +2941,7 @@ class InstructionTextToken(object): StructOffsetToken **Not emitted by architectures** TagToken **Not emitted by architectures** TextToken Used for anything not of another type. + CommentToken Comments TypeNameToken **Not emitted by architectures** ========================== ============================================ |
