mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-22 18:32:51 +02:00
11 lines
114 B
Rust
11 lines
114 B
Rust
#[repr(C)]
|
|
struct Normal {
|
|
x: i32,
|
|
y: f32,
|
|
}
|
|
|
|
extern "C" {
|
|
fn foo() -> i32;
|
|
|
|
fn bar(a: Normal);
|
|
}
|