diff options
| author | Brian Potchik <brian@vector35.com> | 2024-04-09 20:52:36 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2024-04-09 20:52:36 -0400 |
| commit | cb4f924f561769b4ff7597d266664c5136e66ccb (patch) | |
| tree | d815747c604449a8afed4ab83d82c7128574dff7 /python | |
| parent | 6a3028665578a9d22f564ab8c57c4adbf086131d (diff) | |
Various fixes for recently added BinaryDataNotifications.
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 0f1f77c2..a281a460 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -175,10 +175,17 @@ class NotificationType(IntFlag): ComponentFunctionRemoved = 1 << 36 ComponentDataVariableAdded = 1 << 37 ComponentDataVariableRemoved = 1 << 38 - TypeArchiveAttached = 1 << 39 - TypeArchiveDetached = 1 << 40 - TypeArchiveConnected = 1 << 41 - TypeArchiveDisconnected = 1 << 42 + ExternalLibraryAdded = 1 << 39 + ExternalLibraryRemoved = 1 << 40 + ExternalLibraryUpdated = 1 << 41 + ExternalLocationAdded = 1 << 42 + ExternalLocationRemoved = 1 << 43 + ExternalLocationUpdated = 1 << 44 + TypeArchiveAttached = 1 << 45 + TypeArchiveDetached = 1 << 46 + TypeArchiveConnected = 1 << 47 + TypeArchiveDisconnected = 1 << 48 + BinaryDataUpdates = DataWritten | DataInserted | DataRemoved FunctionLifetime = FunctionAdded | FunctionRemoved FunctionUpdates = FunctionLifetime | FunctionUpdated @@ -195,8 +202,12 @@ class NotificationType(IntFlag): SegmentUpdates = SegmentLifetime | SegmentUpdated SectionLifetime = SectionAdded | SectionRemoved SectionUpdates = SectionLifetime | SectionUpdated - ComponentUpdates = (ComponentAdded | ComponentRemoved | ComponentMoved | ComponentFunctionAdded | ComponentFunctionRemoved | ComponentDataVariableAdded | ComponentDataVariableRemoved) - TypeArchiveUpdates = (TypeArchiveAttached | TypeArchiveDetached | TypeArchiveConnected | TypeArchiveDisconnected) + ComponentUpdates = ComponentAdded | ComponentRemoved | ComponentMoved | ComponentFunctionAdded | ComponentFunctionRemoved | ComponentDataVariableAdded | ComponentDataVariableRemoved + ExternalLibraryLifetime = ExternalLibraryAdded | ExternalLibraryRemoved + ExternalLibraryUpdates = ExternalLibraryLifetime | ExternalLibraryUpdated + ExternalLocationLifetime = ExternalLocationAdded | ExternalLocationRemoved + ExternalLocationUpdates = ExternalLocationLifetime | ExternalLocationUpdated + TypeArchiveUpdates = TypeArchiveAttached | TypeArchiveDetached | TypeArchiveConnected | TypeArchiveDisconnected class BinaryDataNotification: |
