From 25cc02431b61097b2adfc2fbc493b648b0300c3b Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Mon, 10 Mar 2025 11:05:40 -0400 Subject: [SharedCache] Refactor Shared Cache In absence of a better name, this commit refactors the shared cache code. --- view/sharedcache/HeadlessPlugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'view/sharedcache/HeadlessPlugin.cpp') diff --git a/view/sharedcache/HeadlessPlugin.cpp b/view/sharedcache/HeadlessPlugin.cpp index c49ace5a..47c6b9de 100644 --- a/view/sharedcache/HeadlessPlugin.cpp +++ b/view/sharedcache/HeadlessPlugin.cpp @@ -1,9 +1,9 @@ #include -#include "DSCView.h" -#include "SharedCache.h" +#include "SharedCacheView.h" #ifdef __cplusplus -extern "C" { +extern "C" +{ #endif extern void RegisterSharedCacheWorkflow(); #ifdef __cplusplus @@ -16,7 +16,7 @@ extern "C" BINARYNINJAPLUGIN bool CorePluginInit() { - InitDSCViewType(); + SharedCacheViewType::Register(); RegisterSharedCacheWorkflow(); return true; } -- cgit v1.3.1