diff options
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 74a0f868..82e6ace1 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -10126,12 +10126,13 @@ namespace BinaryNinja { */ bool Step(); - /*! Get the current state of the workflow machine - - Returns the current state of the workflow machine. - \return The current state of the workflow machine - */ + // TODO: Add new BNWorkflowMachineStatus structure and cooresponding API + // BNWorkflowMachineStatus GetStatus(); + // TODO remove the following APIs once the above is implemented std::string GetState(); + std::pair<bool, bool> GetLogStatus(); + + bool SetLogEnabled(bool enable, bool global = false); std::optional<bool> QueryOverride(const std::string& activity); bool SetOverride(const std::string& activity, bool enable); |
