soapysdr_sys/lib.rs
1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4
5//! This crate provides bindings for the [SoapySDR](https://github.com/pothosware/SoapySDR/wiki)
6//! C API. See its [header file](https://github.com/pothosware/SoapySDR/blob/master/include/SoapySDR/Device.h)
7//! for API documentation.
8
9include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
10
11// Compatibility for 0.7 -> 0.8 breaking change
12pub use _rust_wrapper_SoapySDRDevice_setupStream as SoapySDRDevice_setupStream;