Dart Bindgen
A tool for generating Dart FFI bindings to C Header file.
Goals
- be able to generate a single
ffi.dart
file that should contain all the C header bindings.
- Current Supported C Features
- [x] Functions
- [x] Function Pointer (aka Callbacks)
- [x] Simple Structs (NOTE: Nested structs is not supported yet, open a PR?)
Non-Goals
Writing a High-Level Abstractions and idiomatic Dart Code for the FFI bindgens, we will leave that as a homework for the user :).