diff options
| author | Alexander Taylor <alex@vector35.com> | 2023-03-10 11:38:52 -0500 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2023-03-10 11:38:52 -0500 |
| commit | af85e10d20aa97cbd2e2c68bc7741cc5bc810c36 (patch) | |
| tree | 0b3e53eb31de140e15830277dcb81f4cb29c4b56 | |
| parent | 688a36a98c65c71baafbde9a20926f34ce9b3a5f (diff) | |
Small clarifications in Enterprise C++ API.
| -rw-r--r-- | enterprise.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/enterprise.h b/enterprise.h index f6f77de8..34d8acac 100644 --- a/enterprise.h +++ b/enterprise.h @@ -28,7 +28,7 @@ namespace BinaryNinja { /*! - API for interacting with an Enterprise Server. + API for interacting with Enterprise features, such as communicating with the Enterprise server. These methods will only do anything on Enterprise editions of Binary Ninja. */ namespace Enterprise @@ -41,7 +41,7 @@ namespace BinaryNinja }; /*! - Authenticate to the server with username and password + Authenticate to the Enterprise server with username and password \param username Username to authenticate with \param password Password to authenticate with \param remember Remember token in keychain @@ -50,7 +50,7 @@ namespace BinaryNinja bool AuthenticateWithCredentials(const std::string& username, const std::string& password, bool remember); /*! - Authenticate with an external provider + Authenticate to the Enterprise server with an external provider \param method Provider method \param remember Remember token in keychain \return True if successful @@ -190,7 +190,7 @@ namespace BinaryNinja void UnregisterNotification(BNEnterpriseServerCallbacks* notify); /*! - RAII object for holding an Enterprise license in a scope. Automatically + RAII object for holding an Enterprise floating license in a scope. Automatically releases the license when destroyed. \b Example: |
