mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-06 04:51:46 -07:00
22 lines
339 B
Rust
22 lines
339 B
Rust
|
|
#[repr(C)]
|
|
pub struct ZeroIDC {}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn zeroidc_new() -> Box<ZeroIDC> {
|
|
Box::new(ZeroIDC{})
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn zeroidc_delete(_: Option<Box<ZeroIDC>>) {}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn zeroidc_start(idc: &mut ZeroIDC) {
|
|
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn zeroidc_stop(idc: &mut ZeroIDC) {
|
|
|
|
}
|
|
|