A_Set_DebugDialog method

int A_Set_DebugDialog(
  1. int nEnable
)

A_Set_DebugDialog()

PURPOSE Enable Debug Message Dialog. SYNTAX int A_Set_DebugDialog(int nEnable); PARAMETER nEnable; 1 -> Enable. 0 -> Disable. RETURN 0 -> OK. Reference AW-Error.txt file. EXAMPLE A_Set_DebugDialog(1); REMARK The A_Set_DebugDialog function set debug message dialog.

Implementation

int A_Set_DebugDialog(
  int nEnable,
) {
  assert(nEnable == 0 || nEnable == 1, 'Valid values are: 0, 1');
  return _A_Set_DebugDialog(
    nEnable,
  );
}