Dart_NativeArguments typedef

Dart_NativeArguments = Pointer<_Dart_NativeArguments>

The arguments to a native function.

This object is passed to a native function to represent its arguments and return value. It allows access to the arguments to a native function by index. It also allows the return value of a native function to be set.

Implementation

typedef Dart_NativeArguments = ffi.Pointer<_Dart_NativeArguments>;