interoptopus 0.16.0

The polyglot bindings generator for your library (C#, C, Python, ...). 🐙
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use interoptopus::ffi;

#[ffi(module = "foo")]
struct Foo1 {
    x: u8,
}

#[ffi(module = common)]
struct Foo2 {
    x: u8,
}

fn main() {}