diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 80edc811..e84b40d1 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -171,6 +171,23 @@ class NotificationType(IntFlag): ComponentFunctionRemoved = 1 << 36 ComponentDataVariableAdded = 1 << 37 ComponentDataVariableRemoved = 1 << 38 + BinaryDataUpdates = DataWritten | DataInserted | DataRemoved + FunctionLifetime = FunctionAdded | FunctionRemoved + FunctionUpdates = FunctionLifetime | FunctionUpdated + DataVariableLifetime = DataVariableAdded | DataVariableRemoved + DataVariableUpdates = DataVariableLifetime | DataVariableUpdated + TagLifetime = TagAdded | TagRemoved + TagUpdates = TagLifetime | TagUpdated + SymbolLifetime = SymbolAdded | SymbolRemoved + SymbolUpdates = SymbolLifetime | SymbolUpdated + StringUpdates = StringFound | StringRemoved + TypeLifetime = TypeDefined | TypeUndefined + TypeUpdates = TypeLifetime | TypeReferenceChanged | TypeFieldReferenceChanged + SegmentLifetime = SegmentAdded | SegmentRemoved + SegmentUpdates = SegmentLifetime | SegmentUpdated + SectionLifetime = SectionAdded | SectionRemoved + SectionUpdates = SectionLifetime | SectionUpdated + ComponentUpdates = (ComponentAdded | ComponentRemoved | ComponentMoved | ComponentFunctionAdded | ComponentFunctionRemoved | ComponentDataVariableAdded | ComponentDataVariableRemoved) class BinaryDataNotification: |
