blob: 47c6b9def9bca5f711f7871f50b39bac3768b3eb (
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 "SharedCacheView.h"
#ifdef __cplusplus
extern "C"
{
#endif
extern void RegisterSharedCacheWorkflow();
#ifdef __cplusplus
}
#endif
extern "C"
{
BN_DECLARE_CORE_ABI_VERSION
BINARYNINJAPLUGIN bool CorePluginInit()
{
SharedCacheViewType::Register();
RegisterSharedCacheWorkflow();
return true;
}
}
|