RtlSecureZeroMemory method

Pointer<Void> RtlSecureZeroMemory(
  1. Pointer<Void> ptr,
  2. int cnt
)

Implementation

ffi.Pointer<ffi.Void> RtlSecureZeroMemory(
  ffi.Pointer<ffi.Void> ptr,
  int cnt,
) {
  return (_RtlSecureZeroMemory ??= _dylib.lookupFunction<
      _c_RtlSecureZeroMemory,
      _dart_RtlSecureZeroMemory>('RtlSecureZeroMemory'))(
    ptr,
    cnt,
  );
}