UnmapViewOfFileEx method

int UnmapViewOfFileEx(
  1. Pointer<Void> BaseAddress,
  2. int UnmapFlags
)

Implementation

int UnmapViewOfFileEx(
  ffi.Pointer<ffi.Void> BaseAddress,
  int UnmapFlags,
) {
  return _UnmapViewOfFileEx(
    BaseAddress,
    UnmapFlags,
  );
}