filleduchaos / dart-bindgen

An experimental library/tool for generating Dart interfaces from header files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Idiomatic Dart representations

filleduchaos opened this issue · comments

commented

Tracks all types that can/should be automatically converted back and forth from C to corresponding idiomatic Dart types (see #8)

  • Booleans (bool <-> bool)
  • Strings (char * <-> String)
  • Enums (enum Foo <-> enum Foo or class Foo)
  • Timestamp (time_t <-> DateTime)