From cd538c8f8cf66099c22c0ffa8e42647861f04107 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Thu, 12 Nov 2020 14:22:29 +0800 Subject: add enumeration PluginLoadStatus --- binaryninjacore.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/binaryninjacore.h b/binaryninjacore.h index c48b93ac..c03406df 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -111,6 +111,12 @@ extern "C" LatePluginLoadOrder }; + enum PluginLoadStatus { + NotAttemptedStatus, + LoadSucceededStatus, + LoadFaildStatus + }; + typedef bool (*BNCorePluginInitFunction)(void); typedef void (*BNCorePluginDependencyFunction)(void); -- cgit v1.3.1