dmrconfig/src/radio.rs

11 lines
116 B
Rust
Raw Normal View History

2021-02-27 23:16:01 -08:00
extern {
fn radio_list_c();
}
#[no_mangle]
pub extern "C" fn radio_list() {
unsafe {
radio_list_c();
}
}