diff options
| author | Rusty Wagner <rusty@vector35.com> | 2020-06-22 19:28:52 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-06-22 21:53:11 -0400 |
| commit | 6c819d1f0e00dad14de96aaa90f9643e710face4 (patch) | |
| tree | 816e3d3444dd027423941a2be20e14b08db267fc | |
| parent | 72b0a4e4a2b948bec7b8f000065ea778a860b099 (diff) | |
Add API to detect if shutdown is in progress
| -rw-r--r-- | binaryninjacore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index f82b6970..35dcc31b 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -2262,6 +2262,7 @@ extern "C" BINARYNINJACOREAPI void BNFreeStringList(char** strs, size_t count); BINARYNINJACOREAPI void BNShutdown(void); + BINARYNINJACOREAPI bool BNIsShutdownRequested(void); BINARYNINJACOREAPI char* BNGetVersionString(void); BINARYNINJACOREAPI uint32_t BNGetBuildId(void); |
