summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/kernelcache/core/KernelCacheView.h2
-rw-r--r--view/sharedcache/core/SharedCacheView.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/view/kernelcache/core/KernelCacheView.h b/view/kernelcache/core/KernelCacheView.h
index bfe12502..bb2515e4 100644
--- a/view/kernelcache/core/KernelCacheView.h
+++ b/view/kernelcache/core/KernelCacheView.h
@@ -54,6 +54,8 @@ public:
bool IsDeprecated() override { return false; }
+ bool HasNoInitialContent() override { return true; }
+
BinaryNinja::Ref<BinaryNinja::Settings> GetLoadSettingsForData(BinaryNinja::BinaryView* data) override;
};
diff --git a/view/sharedcache/core/SharedCacheView.h b/view/sharedcache/core/SharedCacheView.h
index ce592519..25f9591f 100644
--- a/view/sharedcache/core/SharedCacheView.h
+++ b/view/sharedcache/core/SharedCacheView.h
@@ -62,6 +62,8 @@ public:
bool IsDeprecated() override { return false; }
+ bool HasNoInitialContent() override { return true; }
+
BinaryNinja::Ref<BinaryNinja::Settings> GetLoadSettingsForData(BinaryNinja::BinaryView* data) override;
};