RegisterApplicationRecoveryCallback method

int RegisterApplicationRecoveryCallback(
  1. Pointer<NativeFunction<APPLICATION_RECOVERY_CALLBACK>> pRecoveyCallback,
  2. Pointer<Void> pvParameter,
  3. int dwPingInterval,
  4. int dwFlags,
)

Implementation

int RegisterApplicationRecoveryCallback(
  ffi.Pointer<ffi.NativeFunction<APPLICATION_RECOVERY_CALLBACK>>
      pRecoveyCallback,
  ffi.Pointer<ffi.Void> pvParameter,
  int dwPingInterval,
  int dwFlags,
) {
  return _RegisterApplicationRecoveryCallback(
    pRecoveyCallback,
    pvParameter,
    dwPingInterval,
    dwFlags,
  );
}