FPDF_SetSandBoxPolicy method

void FPDF_SetSandBoxPolicy(
  1. int policy,
  2. int enable
)

Function: FPDF_SetSandBoxPolicy Set the policy for the sandbox environment. Parameters: policy - The specified policy for setting, for example: FPDF_POLICY_MACHINETIME_ACCESS. enable - True to enable, false to disable the policy. Return value: None.

Implementation

void FPDF_SetSandBoxPolicy(int policy, int enable) {
  return _FPDF_SetSandBoxPolicy(policy, enable);
}