Dart_FileCloseCallback typedef

Dart_FileCloseCallback = Pointer<NativeFunction<Void Function(Pointer<Void> stream)>>

Closes the opened file.

Callback provided by the embedder for file operations. If the embedder does not allow file operations this callback can be NULL.

\param stream Handle to the opened file.

Implementation

typedef Dart_FileCloseCallback = ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void> stream)>>;