diff options
| author | Xusheng <xusheng@vector35.com> | 2020-11-12 14:22:29 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2020-11-19 11:26:44 +0800 |
| commit | cd538c8f8cf66099c22c0ffa8e42647861f04107 (patch) | |
| tree | 3caf5480e9d64e45049b30a05cf8a2e855c9342f | |
| parent | 42686028be63c84eb94a128c55a485a319ca70ab (diff) | |
add enumeration PluginLoadStatus
| -rw-r--r-- | binaryninjacore.h | 6 |
1 files changed, 6 insertions, 0 deletions
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); |
