ReleaseMayInplace property

Pointer<NativeFunction<Void Function(Pointer<Int> input_index, Pointer<Int> output_index)>> ReleaseMayInplace
getter/setter pair

Release the pointer input_index and output_index allocated from GetMayInplace() function. If GetMayInplace() is defined, this function MUST be defined as well.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Void Function(
      ffi.Pointer<ffi.Int> input_index,
      ffi.Pointer<ffi.Int> output_index,
    )
  >
>
ReleaseMayInplace;