blob: c49ace5a5838cb937902544b5485d66252bf3716 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <binaryninjaapi.h>
#include "DSCView.h"
#include "SharedCache.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void RegisterSharedCacheWorkflow();
#ifdef __cplusplus
}
#endif
extern "C"
{
BN_DECLARE_CORE_ABI_VERSION
BINARYNINJAPLUGIN bool CorePluginInit()
{
InitDSCViewType();
RegisterSharedCacheWorkflow();
return true;
}
}
|