blob: cfa92fe40ac55f14bf42f1537f10ff65cadaf9e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Created by kat on 8/6/24.
//
#include <binaryninjaapi.h>
#include "KernelCacheUINotifications.h"
#include "kctriage.h"
extern "C"
{
BN_DECLARE_CORE_ABI_VERSION
BN_DECLARE_UI_ABI_VERSION
BINARYNINJAPLUGIN bool UIPluginInit()
{
UINotifications::init();
UIAction::registerAction("KC Load IMGHERE");
KCTriageViewType::Register();
return true;
}
}
|