BoxedAppSDK_RemoteProcess_IsOptionEnabled
Description
You can control the behavior of the SDK by setting and reading configuration options. For the current process, use BoxedAppSDK_IsOptionEnabled. To check an option state for another process that is attached to the same virtual environment, use BoxedAppSDK_RemoteProcess_IsOptionEnabled.
Each option can be either enabled or disabled and has a default value. For the full list of available options, see
BoxedApp SDK Options.
Syntax
BOOL __stdcall BoxedAppSDK_RemoteProcess_IsOptionEnabled(
DWORD dwProcessId,
DWORD dwOptionIndex
);function BoxedAppSDK_RemoteProcess_IsOptionEnabled(
dwProcessId: DWORD;
dwOptionIndex: DWORD
): BOOL; stdcall;Parameters
dwProcessId
Specifies the identifier of the remote process whose option value should be read.
dwOptionIndex
Index of the option to check.
See BoxedApp SDK Options for more information.
Return Value
Returns TRUE if the option is enabled, or FALSE if it is disabled.