NTCoreFFI #4542
-
I'm trying to generate Dart Bindings for NetworkTables, but it doesn't seem like there's a way to do it currently. Dart FFI requires C libraries, not C++, so that doesn't work properly with the current codebase. I noticed that there's a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The maven include archive includes the _c headers. Those headers are the C headers, and ntcoreffi exposes just those functions. You can call all the functions in the _c headers from C. Then you would link to the ntcore or ntcoreffi shared library. |
Beta Was this translation helpful? Give feedback.
The maven include archive includes the _c headers. Those headers are the C headers, and ntcoreffi exposes just those functions. You can call all the functions in the _c headers from C. Then you would link to the ntcore or ntcoreffi shared library.