Files
cbindgen/tests/rust/struct.rs
T
2017-11-09 18:04:22 -05:00

37 lines
564 B
Rust

use std::marker::PhantomData;
struct Opaque {
x: i32,
y: f32,
}
#[repr(C)]
struct Normal {
x: i32,
y: f32,
}
#[repr(C)]
struct NormalWithZST {
x: i32,
y: f32,
z: (),
w: PhantomData<i32>,
}
/// cbindgen:rename-all=GeckoCase
#[repr(C)]
struct TupleRenamed(i32, f32);
/// cbindgen:field-names=[x, y]
#[repr(C)]
struct TupleNamed(i32, f32);
#[no_mangle]
extern "C" fn root(a: *mut Opaque,
b: Normal,
c: NormalWithZST,
d: TupleRenamed,
e: TupleNamed)
{ }