summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index 707c32df..be051b50 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -1373,6 +1373,12 @@ extern "C"
void (*typeUndefined)(void* ctxt, BNBinaryView* view, BNQualifiedName* name, BNType* type);
void (*typeReferenceChanged)(void* ctxt, BNBinaryView* view, BNQualifiedName* name, BNType* type);
void (*typeFieldReferenceChanged)(void* ctxt, BNBinaryView* view, BNQualifiedName* name, uint64_t offset);
+ void (*segmentAdded)(void* ctxt, BNBinaryView* view, BNSegment* segment);
+ void (*segmentUpdated)(void* ctxt, BNBinaryView* view, BNSegment* segment);
+ void (*segmentRemoved)(void* ctxt, BNBinaryView* view, BNSegment* segment);
+ void (*sectionAdded)(void* ctxt, BNBinaryView* view, BNSection* section);
+ void (*sectionUpdated)(void* ctxt, BNBinaryView* view, BNSection* section);
+ void (*sectionRemoved)(void* ctxt, BNBinaryView* view, BNSection* section);
};
struct BNFileAccessor