summaryrefslogtreecommitdiff
path: root/view/sharedcache/ui/Plugin.cpp
blob: 9aad843ee6f5ef2fd875551458ae6faebd8b8924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// Created by kat on 8/6/24.
//
#include <binaryninjaapi.h>
#include "SharedCacheUINotifications.h"
#include "dsctriage.h"

extern "C"
{
	BN_DECLARE_CORE_ABI_VERSION
	BN_DECLARE_UI_ABI_VERSION

	BINARYNINJAPLUGIN bool UIPluginInit()
	{
		UINotifications::init();
		UIAction::registerAction("Load Image by Name");
		UIAction::registerAction("Load Image by Address");
		UIAction::registerAction("Load Section by Address");
		UIAction::registerAction("Load ADDRHERE");
		UIAction::registerAction("Load IMGHERE");

		DSCTriageViewType::Register();

		return true;
	}
}