RegisterBadMemoryNotification method

Pointer<Void> RegisterBadMemoryNotification(
  1. Pointer<NativeFunction<PBAD_MEMORY_CALLBACK_ROUTINE>> Callback
)

Implementation

ffi.Pointer<ffi.Void> RegisterBadMemoryNotification(
  ffi.Pointer<ffi.NativeFunction<PBAD_MEMORY_CALLBACK_ROUTINE>> Callback,
) {
  return (_RegisterBadMemoryNotification ??= _dylib.lookupFunction<
      _c_RegisterBadMemoryNotification,
      _dart_RegisterBadMemoryNotification>('RegisterBadMemoryNotification'))(
    Callback,
  );
}