BoxedAppSDK_RemoteProcess_EnableOption

Description

You can control the behavior of the SDK by configuring specific options. For the current process, use BoxedAppSDK_EnableOption. To modify options for another process attached to the same virtual environment, use BoxedAppSDK_RemoteProcess_EnableOption.

Each option can be enabled or disabled, and every one has a default value. See the full list of available options here: BoxedApp SDK Options.

Syntax

void __stdcall BoxedAppSDK_RemoteProcess_EnableOption(
  DWORD dwProcessId,
  DWORD dwOptionIndex,
  BOOL bEnable
);
procedure BoxedAppSDK_RemoteProcess_EnableOption(
  dwProcessId: DWORD;
  dwOptionIndex: DWORD;
  bEnable: BOOL
); stdcall;

Parameters

dwProcessId
Specifies the identifier of the remote process whose option should be modified.

dwOptionIndex
Index of the option to change.
See BoxedApp SDK Options for details.

bEnable
Set to TRUE to enable the option, or FALSE to disable it.

See Also